Example #1
0
 public VoronoiLine(Line L, VoronoiCell neigbor, int indexNeigbor)
 {
     IndexNeigbor = indexNeigbor;
     Neigbor = neigbor;
     _line = ParseLine(L);
 }
Example #2
0
 public VoronoiCell(VoronoiCell C)
     : base()
 {
     _sides = new List<VoronoiLine>(C._sides);
     _center = new Point(C._center);
 }