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

Add() public method

Add a constant to all elements
public Add ( double d ) : void
d double The constant
return void
        public void Add(double d)
        {
            int i;
            for(i=0;i<data.Length;i++)
            {
                this[i] += d;
            }
        }

Same methods

Vector::Add ( Vector V ) : void