示例#1
0
 public PlaneIntersectionType Intersects(Frustum frustum)
 {
     return(frustum.Intersects(this));
 }
示例#2
0
 public static Sphere CreateFromFrustum(Frustum frustum)
 {
     return(Sphere.CreateFromPoints(frustum.GetCorners()));
 }
示例#3
0
 public float?Intersects(Frustum frustum)
 {
     throw new NotImplementedException();
 }