/// <summary> /// Basic implementation based on bounding rectangles intersection /// </summary> public virtual bool IsIntersectsWith(Geometry anotherGeometry) { return(BoundingRectangle.IntersectsWith(anotherGeometry.BoundingRectangle)); }