[]
        
(Showing Draft Content)

C1.Util.DX.Matrix3x2.Multiply

Multiply Method

Multiply(Matrix3x2, float)

Scales a matrix by the given value.

Declaration
public static Matrix3x2 Multiply(Matrix3x2 left, float right)
Public Shared Function Multiply(left As Matrix3x2, right As Single) As Matrix3x2
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.

Multiply(ref Matrix3x2, ref Matrix3x2)

Determines the product of two matrices (same as MatrixProduct).

Declaration
public static Matrix3x2 Multiply(ref Matrix3x2 left, ref Matrix3x2 right)
Public Shared Function Multiply(ByRef left As Matrix3x2, ByRef right As Matrix3x2) As Matrix3x2
Parameters
Type Name Description
Matrix3x2 left

The first matrix to multiply.

Matrix3x2 right

The second matrix to multiply.

Returns
Type Description
Matrix3x2

The product of the two matrices.