Accord.DoublePoint.Add C# (CSharp) Method

Add() public static method

Addition operator - adds scalar to the specified point.
public static Add ( DoublePoint point, double valueToAdd ) : DoublePoint
point DoublePoint Point to increase coordinates of.
valueToAdd double Value to add to coordinates of the specified point.
return DoublePoint
        public static DoublePoint Add(DoublePoint point, double valueToAdd)
        {
            return new DoublePoint(point.X + valueToAdd, point.Y + valueToAdd);
        }

Same methods

DoublePoint::Add ( DoublePoint point1, DoublePoint point2 ) : DoublePoint