예제 #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));
 }