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