예제 #1
0
 public static bool Intersects(this Sphere s, IAABB b)
 {
     return b.SqDistPointAABB(s.Center) <= Math.Pow(s.Radius, 2);
 }