Ejemplo n.º 1
0
 public Quad(Triangle t1, Triangle t2)
 {
     this.t1 = t1;
     this.t2 = t2;
 }
Ejemplo n.º 2
0
 public Quad(Vector3 a, Vector3 b, Vector3 c, Vector3 d)
 {
     t1 = new Triangle(a, b, c);
     t2 = new Triangle(a, c, d);
 }