 | Vector3FMultiply Operator (Vector3F, Vector3F) |
Multiplies each vector component of the two passed vectors.
Namespace: Slash.Math.Algebra.VectorsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static Vector3F operator *(
Vector3F a,
Vector3F b
)
Public Shared Operator * (
a As Vector3F,
b As Vector3F
) As Vector3F
public:
static Vector3F operator *(
Vector3F a,
Vector3F b
)
static let inline (*)
a : Vector3F *
b : Vector3F : Vector3F
Parameters
- a
- Type: Slash.Math.Algebra.VectorsVector3F
First vector. - b
- Type: Slash.Math.Algebra.VectorsVector3F
Second vector.
Return Value
Type:
Vector3F Vector which components are the product of the respective components of the passed vectors.
See Also