示例#1
0
 public bool Intersects(ref Triangle t, CollisionContent cc)
 {
   return t.Intersects(cc, ref sphere);
 }
示例#2
0
 public bool Intersects(ref Triangle t, CollisionContent cc)
 {
   float dd = collRayD;
   return t.Intersects(cc, ref collRay, ref dd);
 }