http://www.emgu.com
Create a triangle using the specific vertices
Namespace:
Emgu.CV.Structure
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic 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
)
new :
v0 : PointF *
v1 : PointF *
v2 : PointF -> Triangle2DF
Parameters
- v0
- Type: System.DrawingPointF
The first vertex - v1
- Type: System.DrawingPointF
The second vertex - v2
- Type: System.DrawingPointF
The third vertex
See Also