コード例 #1
0
ファイル: Geometry.cs プロジェクト: gubenkoved/nr-planes
 /// <summary>
 /// Basic implementation based on bounding rectangles intersection
 /// </summary>
 public virtual bool IsIntersectsWith(Geometry anotherGeometry)
 {
     return(BoundingRectangle.IntersectsWith(anotherGeometry.BoundingRectangle));
 }