Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Matrix Class / Multiply4x4 Method
The left matrix
The right matrix

In This Topic
    Multiply4x4 Method
    In This Topic
    4x4 matrix by matrix multiplication.
    Syntax
    'Declaration
     
    Public Shared Function Multiply4x4( _
       ByVal a(,) As Double, _
       ByVal b(,) As Double _
    ) As Double(,)
    public static double[,] Multiply4x4( 
       double[,] a,
       double[,] b
    )

    Parameters

    a
    The left matrix
    b
    The right matrix

    Return Value

    The multiplication result.
    See Also