[]
        
(Showing Draft Content)

C1.Util.DX.Vector3.op_Multiply

operator * Operator

operator *(float, Vector3)

Scales a vector by the given value.

Declaration
public static Vector3 operator *(float scale, Vector3 value)
Parameters
Type Name Description
float scale

The amount by which to scale the vector.

Vector3 value

The vector to scale.

Returns
Type Description
Vector3

The scaled vector.

operator *(Vector3, float)

Scales a vector by the given value.

Declaration
public static Vector3 operator *(Vector3 value, float scale)
Parameters
Type Name Description
Vector3 value

The vector to scale.

float scale

The amount by which to scale the vector.

Returns
Type Description
Vector3

The scaled vector.

operator *(Vector3, Vector3)

Modulates a vector with another by performing component-wise multiplication.

Declaration
public static Vector3 operator *(Vector3 left, Vector3 right)
Parameters
Type Name Description
Vector3 left

The first vector to multiply.

Vector3 right

The second vector to multiply.

Returns
Type Description
Vector3

The multiplication of the two vectors.