ComponentOne Basic Library for UWP
C1.UWP Assembly / C1.Xaml Namespace / Extensions Class / Multiply Method / Multiply(Matrix,Matrix,Matrix) 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(Matrix,Matrix,Matrix) 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 Windows.UI.Xaml.Media.Matrix, _
       ByRef right As Windows.UI.Xaml.Media.Matrix, _
       ByRef result As Windows.UI.Xaml.Media.Matrix _
    ) 
    public static void Multiply( 
       Windows.UI.Xaml.Media.Matrix left,
       ref Windows.UI.Xaml.Media.Matrix right,
       out Windows.UI.Xaml.Media.Matrix 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