[]
        
(Showing Draft Content)

C1.Blazor.Core.Extensions.Multiply

Multiply Method

Multiply(Matrix3x2, ref Matrix3x2, out Matrix3x2)

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

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

The first matrix to multiply.

Matrix3x2 right

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

Matrix3x2 result

The product of multiplying the two matrices.

Multiply(Matrix3x2, Matrix3x2)

Multiplies the left matrix by the right matrix.

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

The first matrix to multiply.

Matrix3x2 right

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

Returns
Type Description
Matrix3x2

The product of multiplying the two matrices.