Exemplo n.º 1
0
 public Arrow(int index, Point2D from, Point2D to)
 {
     this.index = index;
     this.from = from;
     this.to = to;
 }
Exemplo n.º 2
0
 public Arrow(Point2D from, Point2D to)
     : this(-1, from, to)
 {
 }