public float?Intersects(BoundingFrustum frustum) { if (frustum == null) { throw new ArgumentNullException("frustum"); } return(frustum.Intersects(this)); }
public Boolean Intersects(BoundingFrustum frustum) { return(frustum.Intersects(this)); }
public PlaneIntersectionType Intersects(BoundingFrustum frustum) { return(frustum.Intersects(this)); }