예제 #1
0
파일: Body.cs 프로젝트: strager/SpermGame
 public static bool Intersects(Body a, Body b)
 {
     return a.Shapes.Any(
         (sa) => b.Shapes.Any(
             (sb) => ShapePrimitive.Intersects(sa, sb)
         )
     );
 }
예제 #2
0
파일: Body.cs 프로젝트: strager/SpermGame
 public bool Intersects(Body other)
 {
     return Intersects(this, other);
 }