Example #1
0
 public bool Contains(Polygon poly)
 {
     return(Geom2D.Contains(ref this, poly));
 }
Example #2
0
 public bool Contains(ref Quad quad)
 {
     return(Geom2D.Contains(ref this, ref quad));
 }
Example #3
0
 public bool Contains(ref Rectangle rect)
 {
     return(Geom2D.Contains(ref this, ref rect));
 }
Example #4
0
 public bool Contains(ref Triangle tri)
 {
     return(Geom2D.Contains(ref this, ref tri));
 }
Example #5
0
 public bool Contains(ref Circle circle)
 {
     return(Geom2D.Contains(ref this, ref circle));
 }