Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / MultMatrixf Method
first matrix
second matrix

In This Topic
    MultMatrixf Method
    In This Topic
    Multiplies two matrices.
    Syntax
    'Declaration
     
    Public Shared Function MultMatrixf( _
       ByVal a() As Single, _
       ByVal b() As Single _
    ) As Single()
    public static float[] MultMatrixf( 
       float[] a,
       float[] b
    )

    Parameters

    a
    first matrix
    b
    second matrix

    Return Value

    The matrix a x b.
    See Also