OpenTkEngine.Core.ModelMesh.GetIndicesLength C# (CSharp) Method

GetIndicesLength() public method

public GetIndicesLength ( ) : int
return int
        public int GetIndicesLength()
        {
            return _indices.Length;
        }

Usage Example

Beispiel #1
0
 public static void RenderModelMesh(ModelMesh mesh, Matrix4 matrix, int offset, Color4 color)
 {
     RenderModelMesh(mesh, matrix, offset, mesh.GetIndicesLength() - offset, color);
 }