예제 #1
0
 public Arc(VoronoiCell cell, Point p, Arc prev) : this(cell, p)
 {
     this.prev = prev;
 }
예제 #2
0
 public Arc(VoronoiCell cell, Point p, Arc prev, Arc next) : this(cell, p, prev)
 {
     this.next = next;
 }
예제 #3
0
 public Arc(VoronoiCell cell, Point p)
 {
     this.p    = p;
     this.cell = cell;
 }