예제 #1
0
 public bool Intersects(IPolygon2D other)
 {
     return(ShapeUtility.Intersects(other, this));
 }
예제 #2
0
 public bool Intersects(ICircle2D other)
 {
     return(ShapeUtility.Intersects(this, other));
 }
예제 #3
0
 public override bool Intersects(ICircle2D other)
 {
     return(ShapeUtility.Intersects(other, this));
 }
예제 #4
0
 public override bool Intersects(ICircularExtent other)
 {
     return(ShapeUtility.Intersects(other, this));
 }
예제 #5
0
 public override bool Intersects(IPolygonExtent other)
 {
     return(ShapeUtility.Intersects(other, this));
 }
예제 #6
0
 public override bool Intersects(IPolygon2D other)
 {
     return(ShapeUtility.Intersects(this, other));
 }