| Vector4D Constructor (Vector3D, Double) |
Initializes a new instance of the
Vector4D class.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public Vector4D(
Vector3D vector,
double w
)
Public Sub New (
vector As Vector3D,
w As Double
)
public:
Vector4D(
Vector3D vector,
double w
)
new :
vector : Vector3D *
w : float -> Vector4D
Parameters
- vector
- Type: DigitalRune.Mathematics.AlgebraVector3D
The vector (x, y, z). - w
- Type: SystemDouble
The w component.
See Also