Skip to main content
All docs
V25.1
  • GraphicsCache.CreateMatrix(Single, Single, Single, Single, Single, Single) Method

    Returns a 3-by-3 affine matrix that represents a geometric transform.

    Namespace: DevExpress.Utils.Drawing

    Assembly: DevExpress.Utils.v25.1.dll

    NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

    Declaration

    public IDxMatrix CreateMatrix(
        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 of the new matrix.

    m12 Single

    The value in the first row and second column of the new matrix.

    m21 Single

    The value in the second row and first column of the new matrix.

    m22 Single

    The value in the second row and second column of the new matrix.

    dx Single

    The value in the third row and first column of the new matrix.

    dy Single

    The value in the third row and second column of the new matrix.

    Returns

    Type Description
    DevExpress.Utils.Drawing.IDxMatrix

    An object that represents a geometric transform.

    See Also