示例#1
0
        public decimal?Intersects(BoundingFrustum frustum)
        {
            if (frustum == null)
            {
                throw new ArgumentNullException("frustum");
            }


            return(frustum.Intersects(this));
        }
示例#2
0
 public bool Intersects(BoundingFrustum frustum)
 {
     return(frustum.Intersects(this));
 }
示例#3
0
 public PlaneIntersectionType Intersects(BoundingFrustum frustum)
 {
     return(frustum.Intersects(this));
 }