 | Vector3F Constructor (Single) |
Constructor.
Namespace: Slash.Math.Algebra.VectorsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic Vector3F(
params float[] values
)
Public Sub New (
ParamArray values As Single()
)
public:
Vector3F(
... array<float>^ values
)
new :
values : float32[] -> Vector3F
Parameters
- values
- Type: SystemSingle
Float array which contains the initial vector value. Value at index 0 is taken as the initial x
value, value at index 1 is taken as the initial y value, value at index 2 is taken as the initial z value.
See Also