Пример #1
0
 public bool IntersectsWith(Quad value)
 {
     return(SKLine.FindIntersection(new SKLine(pointTopLeft, pointTopRight), value, true) != null ||
            SKLine.FindIntersection(new SKLine(pointTopRight, pointBottomRight), value, true) != null ||
            SKLine.FindIntersection(new SKLine(pointBottomRight, pointBottomLeft), value, true) != null ||
            SKLine.FindIntersection(new SKLine(pointBottomLeft, pointTopLeft), value, true) != null);
 }