示例#1
0
文件: Ray.cs 项目: jackmott/galaxy
        public float?Intersects(BoundingFrustum frustum)
        {
            if (frustum == null)
            {
                throw new ArgumentNullException("frustum");
            }


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