Beispiel #1
0
 //  Returns Point of intersection if do intersect otherwise default Point (null)
 public static Vector2?FindIntersection(this LevelWall wallA, LevelWall wallB, bool checkIsInLine = false, bool excludeLinePoints = false)
 => wallA.ToVector2().FindIntersection(wallB.ToVector2(), checkIsInLine, excludeLinePoints);