Beispiel #1
0
 public static Dual operator ^(Plane a, Point b)
 {
     return(new Dual(0, _mm_store_ss(Detail.ext03(false, a.P0, b.P3))));
 }
Beispiel #2
0
        public static Dual operator ^(Point b, Plane a)
        {
            __m128 tmp = Detail.ext03(true, a.P0, b.P3);

            return(new Dual(0, _mm_store_ss(tmp)));
        }