Beispiel #1
0
 public static Plane operator |(Plane a, IdealLine b)
 {
     return(new Plane(Detail.dotPIL(false, a.P0, b.P2)));
 }
Beispiel #2
0
 public static Plane operator |(IdealLine b, Plane a)
 {
     return(new Plane(Detail.dotPIL(true, a.P0, b.P2)));
 }