Beispiel #1
0
        public static Point operator ^(Plane a, Line b)
        {
            var p3  = Detail.extPB(a.P0, b.P1);
            var tmp = Detail.ext02(a.P0, b.P2);

            p3 = _mm_add_ps(tmp, p3);
            return(new Point(p3));
        }
Beispiel #2
0
 public static Point operator ^(Plane a, IdealLine b)
 {
     return(new Point(Detail.ext02(a.P0, b.P2)));
 }