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

In This Topic
    Multiply(Matrix3x2,Matrix3x2) Method
    In This Topic
    Multiplies the left matrix by the right matrix.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function Multiply( _
       ByVal left As Matrix3x2, _
       ByVal right As Matrix3x2 _
    ) As Matrix3x2
    public static Matrix3x2 Multiply( 
       Matrix3x2 left,
       Matrix3x2 right
    )

    Parameters

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

    Return Value

    The product of multiplying the two matrices.
    See Also