Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Matrix Class / Multiply3x Method
The matrix
The scalar value

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

    Parameters

    a
    The matrix
    b
    The scalar value

    Return Value

    The multiplication result.
    See Also