Accord.IntPoint.operator C# (CSharp) Method

operator() public static method

Equality operator - checks if two points have equal coordinates.
public static operator ( ) : bool
return bool
        public static bool operator ==( IntPoint point1, IntPoint point2 )
        {
            return ( ( point1.X == point2.X ) && ( point1.Y == point2.Y ) );
        }

Same methods

IntPoint::operator ( ) : IntPoint