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