Compare two triangles and return true if equal

Namespace:  Emgu.CV.Structure
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public bool Equals(
	Triangle2DF tri
)
Visual Basic (Declaration)
Public Function Equals ( _
	tri As Triangle2DF _
) As Boolean
Visual C++
public:
virtual bool Equals(
	Triangle2DF tri
) sealed

Parameters

tri
Type: Emgu.CV.Structure..::.Triangle2DF
the other triangles to compare with

Return Value

true if the two triangles equals, false otherwise

Implements

IEquatable<(Of <(T>)>)..::.Equals(T)

See Also