Accord.IntPoint.operator C# (CSharp) Method

operator() public static method

Addition operator - adds values of two points.
public static operator ( ) : IntPoint
return IntPoint
        public static IntPoint operator +( IntPoint point1, IntPoint point2 )
        {
            return new IntPoint( point1.X + point2.X, point1.Y + point2.Y );
        }

Same methods

IntPoint::operator ( ) : bool