http://www.emgu.com
Create a triangle using the specific vertices
Namespace:
Emgu.CV.Structure
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic 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
)
new :
v0 : MCvPoint3D32f *
v1 : MCvPoint3D32f *
v2 : MCvPoint3D32f -> Triangle3DF
Parameters
- v0
- Type: Emgu.CV.StructureMCvPoint3D32f
The first vertex - v1
- Type: Emgu.CV.StructureMCvPoint3D32f
The second vertex - v2
- Type: Emgu.CV.StructureMCvPoint3D32f
The third vertex
See Also