FMOD_Geometry_AddPolygon() private method

private FMOD_Geometry_AddPolygon ( IntPtr geometry, float directocclusion, float reverbocclusion, bool doublesided, int numvertices, VECTOR vertices, int &polygonindex ) : RESULT
geometry System.IntPtr
directocclusion float
reverbocclusion float
doublesided bool
numvertices int
vertices VECTOR
polygonindex int
return RESULT
Example #1
0
 public RESULT addPolygon(float directOcclusion, float reverbOcclusion, bool doubleSided, int numVertices, ref VECTOR vertices, ref int polygonIndex)
 {
     return(Geometry.FMOD_Geometry_AddPolygon(geometryraw, directOcclusion, reverbOcclusion, doubleSided, numVertices, ref vertices, ref polygonIndex));
 }