| Line3D Constructor (Double, Double, Double, Double, Double, Double) | 
        
         
            Initializes this object
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic Line3D(
	double vx,
	double vy,
	double vz,
	double x1,
	double y1,
	double z1
)
Public Sub New ( 
	vx As Double,
	vy As Double,
	vz As Double,
	x1 As Double,
	y1 As Double,
	z1 As Double
)
public:
Line3D(
	double vx, 
	double vy, 
	double vz, 
	double x1, 
	double y1, 
	double z1
)
new : 
        vx : float * 
        vy : float * 
        vz : float * 
        x1 : float * 
        y1 : float * 
        z1 : float -> Line3DOpenCvSharp.Line3D = function(vx, vy, vz, x1, y1, z1);
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
- vz
- Type: SystemDouble
 The Z 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
- z1
- Type: SystemDouble
 Z-coordinate of some point on the line
 See Also
See Also