Note: This feature is available in Web Workers.
The DOMMatrixReadOnly() constructor creates a new DOMMatrixReadOnly object which represents a 4x4 matrix, suitable for 2D and 3D operations.
new DOMMatrixReadOnly()
new DOMMatrixReadOnly(initString)
new DOMMatrixReadOnly(initArray)initString OptionalA string representing a 2D or 3D matrix in CSS matrix() or matrix3d() format.
initArray OptionalAn array containing either 6 or 16 numbers in column-major order. Other array lengths throw a TypeError.
[m11, m12, m21, m22, m41, m42], creating a 2D matrix.[m11, m12, m13, m14, m21, m22, m23, m24, m31, m32, m33, m34, m41, m42, m43, m44], creating a 3D matrix.If this argument is omitted, an identity matrix is created, i.e., equivalent to [1, 0, 0, 1, 0, 0].
If this argument is provided as a Float32Array or Float64Array, consider using the more performant static methods DOMMatrixReadOnly.fromFloat32Array() or DOMMatrixReadOnly.fromFloat64Array() instead.
A new DOMMatrixReadOnly object.
TypeErrorThrown if the argument is not a string or an array with a length other than 6 or 16.
SyntaxErrorThrown if the string argument is not in a valid CSS matrix() or matrix3d() format.
const matrixFromString = new DOMMatrixReadOnly("matrix(1, 0, 0, 1, 10, 20)");
console.log(matrixFromString.toJSON());
// Output: {a: 1, b: 0, c: 0, d: 1, e: 10, f: 20}const matrixFromArray = new DOMMatrixReadOnly([1, 0, 0, 1, 10, 20]);
console.log(matrixFromArray.toJSON());
// Output: {a: 1, b: 0, c: 0, d: 1, e: 10, f: 20}