ComponentOne Bitmap for UWP
C1.UWP.DX Assembly / C1.Util.DX Namespace / Matrix3x2 Structure / Division Operator
The matrix to divide.
The amount by which to divide.

In This Topic
    Division Operator (Matrix3x2)
    In This Topic
    Divides a matrix by a given value.
    Syntax
    'Declaration
     
    Public Operator /( _
       ByVal left As Matrix3x2, _
       ByVal right As System.Single _
    ) As Matrix3x2
    public Matrix3x2 operator /( 
       Matrix3x2 left,
       System.float right
    )

    Parameters

    left
    The matrix to divide.
    right
    The amount by which to divide.

    Return Value

    The resulting matrix.
    See Also