[]
        
(Showing Draft Content)

GrapeCity.Documents.DX.Matrix3x2.op_Multiply

operator * Operator

operator *(float, in Matrix3x2)

Scales a matrix by a given value.

Declaration
public static Matrix3x2 operator *(float left, in 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 *(in Matrix3x2, float)

Scales a matrix by a given value.

Declaration
public static Matrix3x2 operator *(in 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 *(in Matrix3x2, in Matrix3x2)

Calculates a matrix product for the given matrices.

Declaration
public static Matrix3x2 operator *(in Matrix3x2 left, in 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.