Exemple #1
0
 public static bool IsPointOutOfSphere(float px, float py, float pz, float radius, float cx, float cy, float cz)
 {
     return(!PointInSphere.IsPointInSphere(px, py, pz, radius, cx, cy, cz));
 }
Exemple #2
0
 public static bool IsPointOutOfSphere(Vector point, float radius, Vector sphereCenter)
 {
     return(!PointInSphere.IsPointInSphere(point, radius, sphereCenter));
 }