| LineSegment2D Constructor |
http://www.emgu.com
Create a line segment with the specific starting 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 LineSegment2D(
Point p1,
Point p2
)
Public Sub New (
p1 As Point,
p2 As Point
)
public:
LineSegment2D(
Point p1,
Point p2
)
new :
p1 : Point *
p2 : Point -> LineSegment2DParameters
- p1
- Type: System.DrawingPoint
The first point on the line segment - p2
- Type: System.DrawingPoint
The second point on the line segment
See Also