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