ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX Namespace / Matrix4x4 Structure / Division Operator
The matrix to scale.
The amount by which to scale.

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

    Parameters

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

    Return Value

    The scaled matrix.
    See Also