예제 #1
0
 public void Intersects(ref BoundingSphere sphere, out PlaneIntersectionType result)
 {
     sphere.Intersects(ref this, out result);
 }
예제 #2
0
        /*
         * public PlaneIntersectionType Intersects(BoundingFrustum frustum)
         * {
         *  return frustum.Intersects(this);
         * }
         */

        public PlaneIntersectionType Intersects(BoundingSphere sphere)
        {
            return(sphere.Intersects(this));
        }