Ejemplo n.º 1
0
 public BaseTriangleMeshInfo(BaseTriangleMeshInfo m)
 {
     this.Area = m.Area;
     this.Bounds = m.Bounds;
     this.EndTriangle = m.EndTriangle;
     this.EndVertice = m.EndVertice;
     this.HasNormals = m.HasNormals;
     this.HasTexCoords = m.HasTexCoords;
     this.MaterialID = m.MaterialID;
     this.MaterialName = m.MaterialName;
     this.MeshName = m.MeshName;
     this.StartTriangle = m.StartTriangle;
     this.StartVertice = m.StartVertice;
     this.VerticesOffset = m.VerticesOffset;
     this.tIndexes = m.tIndexes;
 }
Ejemplo n.º 2
0
 public MeshShape(BaseTriangleMeshInfo m)
     : base(m)
 {
     
 }