Voronoi.Algorithms.FortuneHelpers.Vector.this C# (CSharp) Method

this() public method

Gets or sets the value of the vector at the given index
public this ( int i ) : double
i int
return double
        public double this[int i]
        {
            get
            {
                return data[i];
            }
            set
            {
                data[i] = Math.Round(value,Precision);
            }
        }