| LineSegment3DF 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 LineSegment3DF(
MCvPoint3D32f p1,
MCvPoint3D32f p2
)
Public Sub New (
p1 As MCvPoint3D32f,
p2 As MCvPoint3D32f
)
public:
LineSegment3DF(
MCvPoint3D32f p1,
MCvPoint3D32f p2
)
new :
p1 : MCvPoint3D32f *
p2 : MCvPoint3D32f -> LineSegment3DFParameters
- p1
- Type: Emgu.CV.StructureMCvPoint3D32f
The first point on the line segment - p2
- Type: Emgu.CV.StructureMCvPoint3D32f
The second point on the line segment
See Also