コード例 #1
0
ファイル: VoronoiLine.cs プロジェクト: Supitto/Metria
 public VoronoiLine(Line L, VoronoiCell neigbor, int indexNeigbor)
 {
     IndexNeigbor = indexNeigbor;
     Neigbor = neigbor;
     _line = ParseLine(L);
 }
コード例 #2
0
ファイル: VoronoiCell.cs プロジェクト: Supitto/Metria
 public VoronoiCell(VoronoiCell C)
     : base()
 {
     _sides = new List<VoronoiLine>(C._sides);
     _center = new Point(C._center);
 }