Trilium Frontend API
    Preparing search index...

    Variable DOMMatrixReadOnly

    DOMMatrixReadOnly: {
        prototype: DOMMatrixReadOnly;
        fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
        fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
        fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
        new (init?: string | number[]): DOMMatrixReadOnly;
    }

    Type Declaration

    • prototype: DOMMatrixReadOnly
    • fromFloat32Array: function
      • The fromFloat32Array() static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.

        MDN Reference

        Parameters

        • array32: Float32Array<ArrayBuffer>

        Returns DOMMatrixReadOnly

    • fromFloat64Array: function
      • The fromFloat64Array() static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.

        MDN Reference

        Parameters

        • array64: Float64Array<ArrayBuffer>

        Returns DOMMatrixReadOnly

    • fromMatrix: function
      • The fromMatrix() static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an existing matrix or an object which provides the values for its properties.

        MDN Reference

        Parameters

        Returns DOMMatrixReadOnly