| LineSegmentPolarEquality Operator |
Compares two CvPoint objects. The result specifies whether the members of each object are equal.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static bool operator ==(
LineSegmentPolar lhs,
LineSegmentPolar rhs
)
Public Shared Operator = (
lhs As LineSegmentPolar,
rhs As LineSegmentPolar
) As Boolean
public:
static bool operator ==(
LineSegmentPolar lhs,
LineSegmentPolar rhs
)
static let inline (=)
lhs : LineSegmentPolar *
rhs : LineSegmentPolar : bool
Parameters
- lhs
- Type: OpenCvSharpLineSegmentPolar
A Point to compare. - rhs
- Type: OpenCvSharpLineSegmentPolar
A Point to compare.
Return Value
Type:
BooleanThis operator returns true if the members of left and right are equal; otherwise, false.
See Also