|
PointEquality Operator
|
Equality operator - checks if two points have equal coordinates.
Namespace:
Accord
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public static bool operator ==(
Point point1,
Point point2
)
Public Shared Operator = (
point1 As Point,
point2 As Point
) As Boolean
Request Example
View SourceParameters
- point1
- Type: AccordPoint
First point to check. - point2
- Type: AccordPoint
Second point to check.
Return Value
Type:
BooleanReturns
if coordinates of specified
points are equal.
See Also