public static void DrawEvenlySpacedPoints(this Path2D path, IEnumerable <Vector2> points) => path.DrawEvenlySpacedPoints(points, Vector2.zero);
public static void DrawEvenlySpacedPoints(this Path2D path, Vector2 offset) => path.DrawEvenlySpacedPoints(path.EvenlySpacedPoints(), offset);
public static void DrawEvenlySpacedPoints(this Path2D path) => path.DrawEvenlySpacedPoints(path.EvenlySpacedPoints());