示例#1
0
        public Vertex GetVertex(long index)
        {
            if (index < -0 || index > this.CountVertices - 1)
            {
                throw new IndexOutOfRangeException();
            }

            return(new Vertex(VoronoiWrapper.GetVertex(index)));
        }