feat: resetTransform
This commit is contained in:
parent
1ab5658372
commit
5af6598240
@ -1196,7 +1196,6 @@
|
|||||||
* the matrix given by the arguments as described below.
|
* the matrix given by the arguments as described below.
|
||||||
*/
|
*/
|
||||||
ctx.prototype.setTransform = function (a, b, c, d, e, f) {
|
ctx.prototype.setTransform = function (a, b, c, d, e, f) {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1210,10 +1209,12 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ResetTransform changes the current transformation matrix to the identity matrix
|
* ResetTransform resets the current transformation matrix to the identity matrix
|
||||||
|
*
|
||||||
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/resetTransform
|
||||||
*/
|
*/
|
||||||
ctx.prototype.resetTransform = function () {
|
ctx.prototype.resetTransform = function () {
|
||||||
|
this.setTransform(1, 0, 0, 1, 0, 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user