| Line2D Constructor (Double, Double, Double, Double) |
Initializes this object
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public Line2D(
double vx,
double vy,
double x1,
double y1
)
Public Sub New (
vx As Double,
vy As Double,
x1 As Double,
y1 As Double
)
public:
Line2D(
double vx,
double vy,
double x1,
double y1
)
new :
vx : float *
vy : float *
x1 : float *
y1 : float -> Line2D
Parameters
- vx
- Type: SystemDouble
The X component of the normalized vector collinear to the line - vy
- Type: SystemDouble
The Y component of the normalized vector collinear to the line - x1
- Type: SystemDouble
Z-coordinate of some point on the line - y1
- Type: SystemDouble
Z-coordinate of some point on the line
See Also