Accord.Point.Add C# (CSharp) Method

Add() public static method

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

Same methods

Point::Add ( Point point1, Point point2 ) : Point