Skip to main content
All docs
V23.2

DXMatrix(Single, Single, Single, Single, Single, Single) Constructor

Initializes a new instance of the DXMatrix class with specified elements.

Namespace: DevExpress.Drawing

Assembly: DevExpress.Drawing.v23.2.dll

NuGet Package: DevExpress.Drawing

Declaration

public DXMatrix(
    float m11,
    float m12,
    float m21,
    float m22,
    float dx,
    float dy
)

Parameters

Name Type Description
m11 Single

The value in the first row and first column.

m12 Single

The value in the first row and second column.

m21 Single

The value in the second row and first column.

m22 Single

The value in the second row and second column.

dx Single

The value in the third row and first column.

dy Single

The value in the third row and second column.

See Also