Esempio n. 1
0
 public Edge GetEdge(long index)
 {
     if (index < -0 || index > this.CountEdges - 1)
     {
         throw new IndexOutOfRangeException();
     }
     return(new Edge(VoronoiWrapper.GetEdge(index)));
 }