Beispiel #1
0
        public float?Intersects(BoundingFrustum frustum)
        {
            float?result;

            frustum.Intersects(ref this, out result);
            return(result);
        }
Beispiel #2
0
        public float?Intersects(BoundingFrustum frustum)
        {
            if (frustum == null)
            {
                throw new ArgumentNullException("frustum");
            }

            return(frustum.Intersects(this));
        }
Beispiel #3
0
 public PlaneIntersectionType Intersects(BoundingFrustum frustum)
 {
     return(frustum.Intersects(this));
 }
Beispiel #4
0
 public bool Intersects(BoundingFrustum frustum)
 {
     return(frustum.Intersects(this));
 }