C# Class SharpQuake.glpoly_t

Show file Open project: Memorix101/SharpQuake Class Usage Examples

Public Properties

Property Type Description
chain glpoly_t
flags int
next glpoly_t
numverts int
verts float[][]

Public Methods

Method Description
AllocVerts ( int count ) : void
Clear ( ) : void

Method Details

AllocVerts() public method

public AllocVerts ( int count ) : void
count int
return void

Clear() public method

public Clear ( ) : void
return void

Property Details

chain public property

public glpoly_t,SharpQuake chain
return glpoly_t

flags public property

public int flags
return int

next public property

public glpoly_t,SharpQuake next
return glpoly_t

numverts public property

public int numverts
return int

verts public property

Changed! Original Quake glpoly_t has 4 vertex inplace and others immidiately after this struct Now all vertices are in verts array of size [numverts,VERTEXSIZE]
public float[][] verts
return float[][]