mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Correct a comment.
I had gotten confused between figuring out the windings and writing the comments, I guess.
This commit is contained in:
parent
8938870e46
commit
d7c1bc8d02
1 changed files with 2 additions and 2 deletions
|
@ -134,7 +134,7 @@ PlaneFromWinding (winding_t *winding, plane_t *plane)
|
||||||
{
|
{
|
||||||
vec3_t v1, v2;
|
vec3_t v1, v2;
|
||||||
|
|
||||||
// calc plane using CCW winding
|
// calc plane using CW winding
|
||||||
VectorSubtract (winding->points[2], winding->points[1], v1);
|
VectorSubtract (winding->points[2], winding->points[1], v1);
|
||||||
VectorSubtract (winding->points[0], winding->points[1], v2);
|
VectorSubtract (winding->points[0], winding->points[1], v2);
|
||||||
CrossProduct (v2, v1, plane->normal);
|
CrossProduct (v2, v1, plane->normal);
|
||||||
|
@ -1068,7 +1068,7 @@ LoadPortals (char *name)
|
||||||
|
|
||||||
portal->winding = winding;
|
portal->winding = winding;
|
||||||
VectorNegate (plane.normal, portal->plane.normal);
|
VectorNegate (plane.normal, portal->plane.normal);
|
||||||
portal->plane.dist = -plane.dist; // plane is for CCW, portal is CW
|
portal->plane.dist = -plane.dist; // plane is for CW, portal is CCW
|
||||||
portal->cluster = clusternums[1];
|
portal->cluster = clusternums[1];
|
||||||
portal->sphere = sphere;
|
portal->sphere = sphere;
|
||||||
portal++;
|
portal++;
|
||||||
|
|
Loading…
Reference in a new issue