예제 #1
0
 /// <summary></summary>
 public static bool Collide(SphereCollider s, Line l)
 {
     return(Collide(DistanceUtil.ToSphere(s), l));
 }
예제 #2
0
 /// <summary></summary>
 public static bool Collide(SphereCollider s, Point p)
 {
     return(Collide(DistanceUtil.ToSphere(s), p));
 }
예제 #3
0
 /// <summary></summary>
 public static bool Collide(SphereCollider s, BoxCollider b)
 {
     return(Collide(DistanceUtil.ToSphere(s), b));
 }
예제 #4
0
 /// <summary></summary>
 public static bool Collide(MeshCollider m, SphereCollider s)
 {
     return(Collide(m, DistanceUtil.ToSphere(s)));
 }
예제 #5
0
 /// <summary></summary>
 public static bool Collide(SphereCollider s1, SphereCollider s2)
 {
     return(Collide(DistanceUtil.ToSphere(s2), DistanceUtil.ToSphere(s2)));
 }