/// <summary> /// Constructor is a "pass-through" for arguments to Model3D's constructor /// </summary> /// <param name="theStage"></param> /// <param name="label"></param> /// <param name="meshFile"></param> public MovableModel3D(Stage theStage, string label, string meshFile) : base(theStage, label, meshFile) { }
protected int[] indices; // indexes for IndexBuffer -- define face vertice indexes clockwise public IndexVertexBuffers(Stage theStage, string label) : base(theStage) { stage = theStage; name = label; }