Example #1
0
 /// <summary>
 /// Determines the intersection relationship between the frustum and a bounding box.
 /// </summary>
 /// <param name="box">The box.</param>
 /// <param name="result">Type of the containment.</param>
 public void Contains(ref MyBoundingBox box, out MyContainmentType result)
 {
     result = Contains(ref box);
 }
Example #2
0
 /// <summary>
 /// Determines the intersection relationship between the frustum and a bounding sphere.
 /// </summary>
 /// <param name="sphere">The sphere.</param>
 /// <param name="result">Type of the containment.</param>
 public void Contains(ref MyBoundingSphere sphere, out MyContainmentType result)
 {
     result = Contains(ref sphere);
 }
Example #3
0
 /// <summary>
 /// Checks whether a group of points lay totally inside the frustum (Contains), or lay partially inside the frustum (Intersects), or lay outside the frustum (Disjoint).
 /// </summary>
 /// <param name="points">The points.</param>
 /// <param name="result">Type of the containment.</param>
 public void Contains(MyVector3[] points, out MyContainmentType result)
 {
     result = Contains(points);
 }