 | Vector3IMultiply Operator (Int32, Vector3I) |
Multiplies each vector component with the passed int value.
Namespace: Slash.Math.Algebra.VectorsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static Vector3I operator *(
int a,
Vector3I b
)
Public Shared Operator * (
a As Integer,
b As Vector3I
) As Vector3I
public:
static Vector3I operator *(
int a,
Vector3I b
)
static let inline (*)
a : int *
b : Vector3I : Vector3I
Parameters
- a
- Type: SystemInt32
int value to multiply by. - b
- Type: Slash.Math.Algebra.VectorsVector3I
Vector to multiply.
Return Value
Type:
Vector3I Vector which components are the product of the respective component of the passed vector and the int value.
See Also