Ejemplo n.º 1
0
 /// <summary>
 /// Determines whether the current objects contains a <see cref="MyBoundingSphere"/>.
 /// </summary>
 /// <param name="sphere">The sphere to test.</param>
 /// <returns>The type of containment the two objects have.</returns>
 public MyContainmentType Contains(ref MyBoundingSphere sphere)
 {
     return(MyCollision.SphereContainsSphere(ref this, ref sphere));
 }