Create a triangle using the specific vertices

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public Triangle2DF(
	PointF v0,
	PointF v1,
	PointF v2
)
Public Sub New ( _
	v0 As PointF, _
	v1 As PointF, _
	v2 As PointF _
)
public:
Triangle2DF(
	PointF v0, 
	PointF v1, 
	PointF v2
)

Parameters

v0
PointF
The first vertex
v1
PointF
The second vertex
v2
PointF
The third vertex

See Also