public bool Intersect(Slice3D b, out Segment3D intersection)
 {
     // todo: check. this always returns false????
     intersection = null;
     if (!Plane.Intersect(b.Plane, out var line))
     {
         return(false);
     }
     return(false);
 }
示例#2
0
        public bool Intersect(Slice3D b, out Segment3D intersection)
        {
            intersection = null;

            Line3D line;

            if (!Plane.Intersect(b.Plane, out line))
            {
                return(false);
            }

            return(false);
        }
示例#3
0
        public bool Intersect(Slice3D b, out Segment3D intersection)
        {
            intersection = null;

            Line3D line;
            if (!Plane.Intersect(b.Plane, out line)) return false;

            return false;
        }