 | Vector3IMultiply Operator (Vector3I, Int32) |
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 *(
Vector3I a,
int b
)
Public Shared Operator * (
a As Vector3I,
b As Integer
) As Vector3I
public:
static Vector3I operator *(
Vector3I a,
int b
)
static let inline (*)
a : Vector3I *
b : int : Vector3I
Parameters
- a
- Type: Slash.Math.Algebra.VectorsVector3I
Vector to multiply. - b
- Type: SystemInt32
int value to multiply by.
Return Value
Type:
Vector3I Vector which components are the product of the respective component of the passed vector and the int value.
See Also