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

Same methods

Point::operator ( ) : Point