Blazor | ComponentOne
C1.Blazor.Core Assembly / C1.Blazor.Core Namespace / Extensions Class / Multiply Method / Multiply(Matrix3x2,Matrix3x2,Matrix3x2) Method
The first matrix to multiply.
The matrix to multiply the left by (the right matrix in the multiplication).
The product of multiplying the two matrices.

In This Topic
    Multiply(Matrix3x2,Matrix3x2,Matrix3x2) Method
    In This Topic
    Multiplies the left matrix by the right matrix, returns the resulting matrix in the output parameter.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Sub Multiply( _
       ByVal left As Matrix3x2, _
       ByRef right As Matrix3x2, _
       ByRef result As Matrix3x2 _
    ) 
    public static void Multiply( 
       Matrix3x2 left,
       ref Matrix3x2 right,
       out Matrix3x2 result
    )

    Parameters

    left
    The first matrix to multiply.
    right
    The matrix to multiply the left by (the right matrix in the multiplication).
    result
    The product of multiplying the two matrices.
    See Also