ComponentOne Bitmap for UWP
C1.UWP.DX Assembly / C1.Util.DX Namespace / Matrix3x2 Structure / MatrixProductRef Method
The product of the two matrices.
The first matrix to multiply.
The second matrix to multiply.

In This Topic
    MatrixProductRef Method (Matrix3x2)
    In This Topic
    Determines the product of two matrices.
    Syntax
    'Declaration
     
    Public Shared Sub MatrixProductRef( _
       ByRef result As Matrix3x2, _
       ByRef left As Matrix3x2, _
       ByRef right As Matrix3x2 _
    ) 
    public static void MatrixProductRef( 
       out Matrix3x2 result,
       ref Matrix3x2 left,
       ref Matrix3x2 right
    )

    Parameters

    result
    The product of the two matrices.
    left
    The first matrix to multiply.
    right
    The second matrix to multiply.
    See Also