Create a triangle using the specific vertices

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

Syntax

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

Parameters

v0
Type: System.Drawing..::.PointF
The first vertex
v1
Type: System.Drawing..::.PointF
The second vertex
v2
Type: System.Drawing..::.PointF
The third vertex

See Also