コード例 #1
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Intersects(ref Quad quad, out Vector2 pushOut)
 {
     return(Geom2D.Intersects(ref this, ref quad, out pushOut));
 }
コード例 #2
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Intersects(Polygon poly, out Vector2 pushOut)
 {
     return(Geom2D.Intersects(ref this, poly, out pushOut));
 }
コード例 #3
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Intersects(ref Rectangle rect, out Vector2 pushOut)
 {
     return(Geom2D.Intersects(ref this, ref rect, out pushOut));
 }
コード例 #4
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Intersects(ref Triangle tri, out Vector2 pushOut)
 {
     return(Geom2D.Intersects(ref this, ref tri, out pushOut));
 }
コード例 #5
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Intersects(Vector2 point, out Vector2 pushOut)
 {
     return(Geom2D.Intersects(ref this, point, out pushOut));
 }
コード例 #6
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Intersects(ref Circle circle, out Vector2 pushOut)
 {
     return(Geom2D.Intersects(ref this, ref circle, out pushOut));
 }
コード例 #7
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Intersects(Polygon poly)
 {
     return(Geom2D.Intersects(ref this, poly));
 }
コード例 #8
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Intersects(ref Quad quad)
 {
     return(Geom2D.Intersects(ref this, ref quad));
 }
コード例 #9
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Intersects(ref Triangle tri)
 {
     return(Geom2D.Intersects(ref this, ref tri));
 }
コード例 #10
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Intersects(ref Rectangle rect)
 {
     return(Geom2D.Intersects(ref this, ref rect));
 }
コード例 #11
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Intersects(ref Circle circle)
 {
     return(Geom2D.Intersects(ref this, ref circle));
 }