Beispiel #1
0
 public Plane(P3 p, P3 n)
 {
     this.p = p;
     this.n = n;
     d      = -p.Dot(n);
 }
Beispiel #2
0
 public Plane(P3 p, P3 n)
 {
     this.p = p;
     this.n = n;
     d = -p.Dot(n);
 }