This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
Note: This feature is available in Web Workers.
The rotateFromVectorSelf() method of the DOMMatrix interface is a mutable transformation method that modifies a matrix by rotating the matrix by the angle between the specified vector and (1, 0). The rotation angle is determined by the angle between the vector (1,0)T and (x,y)T in the clockwise direction, or (+/-)arctan(y/x). If x and y are both 0, the angle is specified as 0, and the matrix is not altered.
To rotate a matrix from a vector without mutating it, see DOMMatrixReadOnly.rotateFromVector(), which creates a new rotated matrix while leaving the original unchanged.
rotateFromVectorSelf() rotateFromVectorSelf(rotX) rotateFromVectorSelf(rotX, rotY)
rotX OptionalA number; The x-coordinate of x,y vector that determines the rotation angle. If undefined, 0 is used.
rotY OptionalA number; The y-coordinate of x,y vector that determines the rotation angle. If undefined, 0 is used.
Returns itself; the updated DOMMatrix.
const matrix = new DOMMatrix(); // create a matrix console.log(matrix.rotateFromVectorSelf().toString()); // output: matrix(1, 0, 0, 1, 0, 0) (no rotation applied) console.log(matrix.rotateFromVectorSelf(10, 20).toString()); // output: matrix(0.447, 0.894, -0.894, 0.447, 0, 0) console.log(matrix.toString()); // output: matrix(0.447, 0.894, -0.894, 0.447, 0, 0) (same as above)
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
rotateFromVectorSelf |
61 | 79 | 33 | 48 | 11 | 61 | 33 | 45 | 11 | 8.0 | 61 | 11 |
DOMMatrixReadOnly.rotateFromVector()DOMMatrix.rotateSelf()DOMMatrix.rotateAxisAngleSelf()transform property and rotate3d() functionrotate propertytransform attributeCanvasRenderingContext2D interface and rotate() method
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrix/rotateFromVectorSelf