| LineSegment2DF Constructor |
http://www.emgu.com
Create a line segment with the specific start point and end point
Namespace: Emgu.CV.StructureAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic LineSegment2DF(
PointF p1,
PointF p2
)
Public Sub New (
p1 As PointF,
p2 As PointF
)
public:
LineSegment2DF(
PointF p1,
PointF p2
)
new :
p1 : PointF *
p2 : PointF -> LineSegment2DFParameters
- p1
- Type: System.DrawingPointF
The first point on the line segment - p2
- Type: System.DrawingPointF
The second point on the line segment
See Also