コード例 #1
0
 public Dot(int _number, double _x, double _y, AbstractPoly _owner)
 {
     this.x      = _x;
     this.y      = _y;
     this.number = _number;
     this.owner  = _owner;
 }
コード例 #2
0
ファイル: Line.cs プロジェクト: Alexsandropolys/XMLparser
 public Line(Dot begin, Dot end, AbstractPoly owner)
 {
     this.begin = begin;
     this.end   = end;
     this.owner = owner;
 }