[]
        
(Showing Draft Content)

C1.WPF.Extensions.Multiply

Multiply Method

Multiply(Matrix, ref Matrix, out Matrix)

Multiplies the left matrix by the right matrix, returns the resulting matrix in the output parameter.

Declaration
public static void Multiply(this Matrix left, ref Matrix right, out Matrix result)
Parameters
Type Name Description
Matrix left

The first matrix to multiply.

Matrix right

The matrix to multiply the left by (the right matrix in the multiplication).

Matrix result

The product of multiplying the two matrices.

Multiply(Matrix, Matrix)

Multiplies the left matrix by the right matrix.

Declaration
public static Matrix Multiply(this Matrix left, Matrix right)
Parameters
Type Name Description
Matrix left

The first matrix to multiply.

Matrix right

The matrix to multiply the left by (the right matrix in the multiplication).

Returns
Type Description
Matrix

The product of multiplying the two matrices.