Struct LineSegment3DF
A 3D line segment
public struct LineSegment3DF
- Inherited Members
Constructors
LineSegment3DF(MCvPoint3D32f, MCvPoint3D32f)
Create a line segment with the specific start point and end point
public LineSegment3DF(MCvPoint3D32f p1, MCvPoint3D32f p2)
Parameters
p1
MCvPoint3D32fThe first point on the line segment
p2
MCvPoint3D32fThe second point on the line segment
Properties
Length
Get the length of the line segment
public double Length { get; }
Property Value
P1
A point on the line
public MCvPoint3D32f P1 { get; set; }
Property Value
P2
An other point on the line
public MCvPoint3D32f P2 { get; set; }