meo-skia-canvas
    Preparing search index...

    Interface DOMMatrix2DInit

    The fields a 2D transform can be read from.

    Every value has two names: the a-f of the CSS matrix notation and the mRC of the matrix cell it occupies. They are the same six numbers, so supplying both names for one value with different numbers is a TypeError rather than a precedence rule.

    interface DOMMatrix2DInit {
        a?: number;
        b?: number;
        c?: number;
        d?: number;
        e?: number;
        f?: number;
        m11?: number;
        m12?: number;
        m21?: number;
        m22?: number;
        m41?: number;
        m42?: number;
    }

    Hierarchy (View Summary)

    Index
    a?: number

    Horizontal scale; the same value as m11.

    b?: number

    Vertical skew; the same value as m12.

    c?: number

    Horizontal skew; the same value as m21.

    d?: number

    Vertical scale; the same value as m22.

    e?: number

    Horizontal translation; the same value as m41.

    f?: number

    Vertical translation; the same value as m42.

    m11?: number

    Row 1, column 1; the same value as a.

    m12?: number

    Row 1, column 2; the same value as b.

    m21?: number

    Row 2, column 1; the same value as c.

    m22?: number

    Row 2, column 2; the same value as d.

    m41?: number

    Row 4, column 1; the same value as e.

    m42?: number

    Row 4, column 2; the same value as f.