コード例 #1
0
 public Cell GetCell(long index)
 {
     if (index < -0 || index > this.CountCells - 1)
     {
         throw new IndexOutOfRangeException();
     }
     return(new Cell(VoronoiWrapper.GetCell(index)));
 }