Click or drag to resize
Vector3IMultiply Operator (Vector3I, Int32)
Multiplies each vector component with the passed int value.

Namespace: Slash.Math.Algebra.Vectors
Assembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntax
public static Vector3I operator *(
	Vector3I a,
	int b
)

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