예제 #1
0
 public static BoundingSphere CreateFromFrustum(BoundingFrustum frustum)
 {
     return(BoundingSphere.CreateFromPoints(frustum.GetCorners()));
 }
예제 #2
0
 public double?Intersects(BoundingFrustum frustum)
 {
     throw new NotImplementedException();
 }
예제 #3
0
 public PlaneIntersectionType Intersects(BoundingFrustum frustum)
 {
     return(frustum.Intersects(this));
 }
예제 #4
0
파일: BoundingBox.cs 프로젝트: mesh42/vpnet
 public bool Intersects(BoundingFrustum frustum)
 {
     return(frustum.Intersects(this));
 }