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

ModelMesh() public method

public ModelMesh ( float verts, int indices, bool texCoords ) : System
verts float
indices int
texCoords bool
return System
        public ModelMesh(float[] verts, int[] indices, bool texCoords)
        {
            _vertices = verts;
            _indices = indices;
            _texCoords = texCoords;
        }