Create a triangle using the specific vertices

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

Syntax

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

Parameters

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

See Also