[]
        
(Showing Draft Content)

C1.Util.DX.Matrix3x2.op_Multiply

operator * Operator

operator *(float, Matrix3x2)

Scales a matrix by a given value.

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

The amount by which to scale.

Matrix3x2 right

The matrix to scale.

Returns
Type Description
Matrix3x2

The scaled matrix.

operator *(Matrix3x2, float)

Scales a matrix by a given value.

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

The matrix to scale.

float right

The amount by which to scale.

Returns
Type Description
Matrix3x2

The scaled matrix.

operator *(Matrix3x2, Matrix3x2)

Calculates a matrix product for the given matrices.

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

The first matrix.

Matrix3x2 right

The second matrix.

Returns
Type Description
Matrix3x2

The result of the matrix multiplication.