A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Web/API/DOMMatrix/skewYSelf below:

DOMMatrix: skewYSelf() method - Web APIs

DOMMatrix: skewYSelf() method

Baseline Widely available

Note: This feature is available in Web Workers.

The skewYSelf() method of the DOMMatrix interface is a mutable transformation method that modifies a matrix. It skews the source matrix by applying the specified skew transformation along the Y-axis and returns the skewed matrix.

To skew a matrix along the Y-axis without mutating it, see DOMMatrixReadOnly.skewY()

Syntax
skewYSelf()
skewYSelf(sY)
Parameters
sY

A number; the angle, in degrees, by which to skew the matrix along the Y axis.

Return value

Returns itself; the DOMMatrix skewed along the Y-axis by the given angle.

Examples
const matrix = new DOMMatrix(); // create a matrix
console.log(matrix.toString()); // output: "matrix(1, 0, 0, 1, 0, 0)"
matrix.skewYSelf(-14); // mutate it
console.log(matrix); // output: "matrix(1, -0.25, 0, 1, 0, 0)"
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.3