ComponentOne Bitmap for WinForms
C1.Win.C1DX.4.5.2 Assembly / C1.Util.DX Namespace / Matrix4x4 Structure / Multiply Method / Multiply(Matrix4x4,Matrix4x4) Method
The first matrix to multiply.
The second matrix to multiply.

In This Topic
    Multiply(Matrix4x4,Matrix4x4) Method
    In This Topic
    Determines the product of two matrices (same as MatrixProduct).
    Syntax
    'Declaration
     
    Public Overloads Shared Function Multiply( _
       ByRef left As Matrix4x4, _
       ByRef right As Matrix4x4 _
    ) As Matrix4x4
    public static Matrix4x4 Multiply( 
       ref Matrix4x4 left,
       ref Matrix4x4 right
    )

    Parameters

    left
    The first matrix to multiply.
    right
    The second matrix to multiply.

    Return Value

    The product of the two matrices.
    See Also