public TurtleFace(ITurtleFace other)
 {
     _indices = new List <int>(other.EdgesVerticesCount);
     for (int i = 0; i < other.EdgesVerticesCount; i++)
     {
         _indices.Add(other[i]);
     }
 }
Esempio n. 2
0
 public TurtleFace(ITurtleFace other)
 {
     _indices = new List<int>(other.EdgesVerticesCount);
     for (int i = 0; i < other.EdgesVerticesCount; i++)
         _indices.Add(other[i]);
 }