Accord.DoublePoint.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 ==(DoublePoint point1, DoublePoint point2)
        {
            return ((point1.X == point2.X) && (point1.Y == point2.Y));
        }

Same methods

DoublePoint::operator ( ) : DoublePoint