コード例 #1
0
 public static bool Intersects(this Tri3D tri, Rect3D rect)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 public static bool Intersects(this Sphere sphere, Rect3D rect)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public static bool Intersects(this Rect3D rect, Rect3D other)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
 public static bool Intersects(this Rect3D rect, Line3D line)
 {
     throw new NotImplementedException();
 }
コード例 #5
0
 public static bool Contains(this Rect3D rect, Sphere sphere)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
 public static bool Contains(this Rect3D rect, Tri3D tri)
 {
     throw new NotImplementedException();
 }
コード例 #7
0
 public static bool Contains(this Rect3D rect, Point3D point)
 {
     throw new NotImplementedException();
 }