[]
        
(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)
Public Shared Sub Multiply(left As Matrix, ByRef right As Matrix, ByRef result As Matrix)
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)
Public Shared Function Multiply(left As Matrix, right As Matrix) As Matrix
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.