| LineSegmentPointEquality Operator  | 
        
         
            Compares two CvPoint objects. The result specifies whether the members of each object are equal.
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic static bool operator ==(
	LineSegmentPoint lhs,
	LineSegmentPoint rhs
)
Public Shared Operator = ( 
	lhs As LineSegmentPoint,
	rhs As LineSegmentPoint
) As Boolean
public:
static bool operator ==(
	LineSegmentPoint lhs, 
	LineSegmentPoint rhs
)
static let inline (=)
        lhs : LineSegmentPoint * 
        rhs : LineSegmentPoint  : boolJavaScript does not support overloaded operators.
Parameters
- lhs
- Type: OpenCvSharpLineSegmentPoint
 A Point to compare.
- rhs
- Type: OpenCvSharpLineSegmentPoint
 A Point to compare.
Return Value
Type: 
BooleanThis operator returns true if the members of left and right are equal; otherwise, false.
 See Also
See Also