Esempio n. 1
0
 public bool Intersects(ref Quad quad, out Vector2 pushOut)
 {
     return(Geom2D.Intersects(ref this, ref quad, out pushOut));
 }
Esempio n. 2
0
 public bool Intersects(Polygon poly, out Vector2 pushOut)
 {
     return(Geom2D.Intersects(ref this, poly, out pushOut));
 }
Esempio n. 3
0
 public bool Intersects(ref Rectangle rect, out Vector2 pushOut)
 {
     return(Geom2D.Intersects(ref this, ref rect, out pushOut));
 }
Esempio n. 4
0
 public bool Intersects(ref Triangle tri, out Vector2 pushOut)
 {
     return(Geom2D.Intersects(ref this, ref tri, out pushOut));
 }
Esempio n. 5
0
 public bool Intersects(Vector2 point, out Vector2 pushOut)
 {
     return(Geom2D.Intersects(ref this, point, out pushOut));
 }
Esempio n. 6
0
 public bool Intersects(ref Circle circle, out Vector2 pushOut)
 {
     return(Geom2D.Intersects(ref this, ref circle, out pushOut));
 }
Esempio n. 7
0
 public bool Intersects(Polygon poly)
 {
     return(Geom2D.Intersects(ref this, poly));
 }
Esempio n. 8
0
 public bool Intersects(ref Quad quad)
 {
     return(Geom2D.Intersects(ref this, ref quad));
 }
Esempio n. 9
0
 public bool Intersects(ref Triangle tri)
 {
     return(Geom2D.Intersects(ref this, ref tri));
 }
Esempio n. 10
0
 public bool Intersects(ref Rectangle rect)
 {
     return(Geom2D.Intersects(ref this, ref rect));
 }
Esempio n. 11
0
 public bool Intersects(ref Circle circle)
 {
     return(Geom2D.Intersects(ref this, ref circle));
 }