Exemplo n.º 1
0
 public static void DrawEvenlySpacedPoints(this Path2D path, IEnumerable <Vector2> points) =>
 path.DrawEvenlySpacedPoints(points, Vector2.zero);
Exemplo n.º 2
0
 public static void DrawEvenlySpacedPoints(this Path2D path, Vector2 offset) =>
 path.DrawEvenlySpacedPoints(path.EvenlySpacedPoints(), offset);
Exemplo n.º 3
0
 public static void DrawEvenlySpacedPoints(this Path2D path) =>
 path.DrawEvenlySpacedPoints(path.EvenlySpacedPoints());