Document Solutions for PDF
GrapeCity.Documents.DX.Windows Assembly / GrapeCity.Documents.DX Namespace / Matrix4x4 Structure / Multiplication Operator / Multiplication(Matrix4x4,Matrix4x4) Operator
The first matrix to multiply.
The second matrix to multiply.

In This Topic
    Multiplication(Matrix4x4,Matrix4x4) Operator
    In This Topic
    Multiplies two matricies.
    Syntax
    'Declaration
     
    Overloads Public Operator *( _
       ByRef left As Matrix4x4, _
       ByRef right As Matrix4x4 _
    ) As Matrix4x4
    public Matrix4x4 operator *( 
       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 matricies.
    See Also