Ejemplo n.º 1
0
 public void AddVertex(int vertice, int normal, int texture)
 {
     IndexesVertice.Add(vertice);
     if (normal != -1)
     {
         IndexesNormal.Add(normal);
     }
     if (texture != -1)
     {
         IndexesTexture.Add(texture);
     }
 }