[]
        
(Showing Draft Content)

C1.Util.DX.Vector4.op_Multiply

operator * Operator

operator *(float, Vector4)

Scales a vector by the given value.

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

The amount by which to scale the vector.

Vector4 value

The vector to scale.

Returns
Type Description
Vector4

The scaled vector.

operator *(Vector4, float)

Scales a vector by the given value.

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

The vector to scale.

float scale

The amount by which to scale the vector.

Returns
Type Description
Vector4

The scaled vector.

operator *(Vector4, Vector4)

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

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

The first vector to multiply.

Vector4 right

The second vector to multiply.

Returns
Type Description
Vector4

The multiplication of the two vectors.