public override bool Overlaps(CircleShape circle, PointF offset)
 {
     throw new NotImplementedException();
 }
 /// <summary>
 /// Calculates if hte other circle, with a center offset given, intersects with the given shape.
 /// </summary>
 /// <param name="circle"></param>
 /// <param name="offset"></param>
 /// <returns></returns>
 public abstract bool Overlaps(CircleShape circle, PointF offset);
Example #3
0
 public override bool Overlaps(CircleShape circle, PointF offset)
 {
     throw new NotImplementedException();
 }