コード例 #1
0
ファイル: Plane.cs プロジェクト: giovann997/spacewar-arena
 public void Intersects(ref BoundingBox box, out PlaneIntersectionType result)
 {
     result = Intersects(box);
 }
コード例 #2
0
ファイル: Plane.cs プロジェクト: giovann997/spacewar-arena
 public PlaneIntersectionType Intersects(BoundingBox box)
 {
     return(box.Intersects(this));
 }