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