Exemple #1
0
 public static implicit operator Line((Vector2 from, Vector2 to) a) => new Line(a.from, a.to);
Exemple #2
0
 public static implicit operator Segment((Vector2 from, Vector2 to) a) => new Segment(a.from, a.to);