コード例 #1
0
ファイル: ShapeCircle.cs プロジェクト: raphaelmun/MonoXen
 public bool Intersects(IPolygon2D other)
 {
     return(ShapeUtility.Intersects(other, this));
 }
コード例 #2
0
 public bool Intersects(ICircle2D other)
 {
     return(ShapeUtility.Intersects(this, other));
 }
コード例 #3
0
ファイル: CircularExtent.cs プロジェクト: raphaelmun/MonoXen
 public override bool Intersects(ICircle2D other)
 {
     return(ShapeUtility.Intersects(other, this));
 }
コード例 #4
0
ファイル: CircularExtent.cs プロジェクト: raphaelmun/MonoXen
 public override bool Intersects(ICircularExtent other)
 {
     return(ShapeUtility.Intersects(other, this));
 }
コード例 #5
0
ファイル: CircularExtent.cs プロジェクト: raphaelmun/MonoXen
 public override bool Intersects(IPolygonExtent other)
 {
     return(ShapeUtility.Intersects(other, this));
 }
コード例 #6
0
ファイル: PolygonExtent.cs プロジェクト: raphaelmun/MonoXen
 public override bool Intersects(IPolygon2D other)
 {
     return(ShapeUtility.Intersects(this, other));
 }