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