コード例 #1
0
ファイル: Arrow.cs プロジェクト: krdlab/wgnuplot4cs
 public Arrow(int index, Point2D from, Point2D to)
 {
     this.index = index;
     this.from = from;
     this.to = to;
 }
コード例 #2
0
ファイル: Arrow.cs プロジェクト: krdlab/wgnuplot4cs
 public Arrow(Point2D from, Point2D to)
     : this(-1, from, to)
 {
 }