Esempio n. 1
0
 /// <summary>
 /// Adds triangles to the builder.
 /// </summary>
 public void AddTriangles(IndexTriangle t0, IndexTriangle t1)
 {
     this.triangles.Add(t0);
     this.triangles.Add(t1);
 }
Esempio n. 2
0
 /// <summary>
 /// Adds a triangle to the builder.
 /// </summary>
 public void AddTriangle(IndexTriangle t)
 {
     this.triangles.Add(t);
 }