mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Shrink the default winding size.
The minimum number of points on a valid winding is 3, and the most common will be 4 (especially useful for static structures).
This commit is contained in:
parent
73b93ffd74
commit
4044f9d8e2
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ struct plane_s;
|
||||||
|
|
||||||
typedef struct winding_s {
|
typedef struct winding_s {
|
||||||
int numpoints; ///< The number of points in the winding
|
int numpoints; ///< The number of points in the winding
|
||||||
vec3_t points[3]; ///< variable sized, never less than 3
|
vec3_t points[4]; ///< variable sized, never less than 3
|
||||||
} winding_t;
|
} winding_t;
|
||||||
|
|
||||||
/** Create a very large four-point winding with all point on the plane.
|
/** Create a very large four-point winding with all point on the plane.
|
||||||
|
|
Loading…
Reference in a new issue