Ejemplo n.º 1
0
 public CadMesh(int vertexCount, int faceCount)
 {
     VertexStore = new VertexList(vertexCount);
     FaceStore   = new FlexArray <CadFace>(faceCount);
 }
Ejemplo n.º 2
0
 public VertexList(VertexList src) : base(src)
 {
 }