microboard-temp 0.12.0 → 0.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/browser.js +3 -3
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/node.js +3 -3
- package/dist/esm/browser.js +3 -3
- package/dist/esm/index.js +3 -3
- package/dist/esm/node.js +3 -3
- package/package.json +1 -1
package/dist/cjs/browser.js
CHANGED
|
@@ -18215,9 +18215,9 @@ class Transformation {
|
|
|
18215
18215
|
}, timeStamp);
|
|
18216
18216
|
}
|
|
18217
18217
|
applyMatrixSilent(matrixData) {
|
|
18218
|
-
this.previous = this.
|
|
18219
|
-
this.
|
|
18220
|
-
this.
|
|
18218
|
+
this.previous = this._matrix.copy();
|
|
18219
|
+
this._matrix.scale(matrixData.scaleX, matrixData.scaleY);
|
|
18220
|
+
this._matrix.translate(matrixData.translateX, matrixData.translateY);
|
|
18221
18221
|
this.subject.publish(this, {
|
|
18222
18222
|
class: "Transformation",
|
|
18223
18223
|
method: "applyMatrix",
|
package/dist/cjs/index.js
CHANGED
|
@@ -18215,9 +18215,9 @@ class Transformation {
|
|
|
18215
18215
|
}, timeStamp);
|
|
18216
18216
|
}
|
|
18217
18217
|
applyMatrixSilent(matrixData) {
|
|
18218
|
-
this.previous = this.
|
|
18219
|
-
this.
|
|
18220
|
-
this.
|
|
18218
|
+
this.previous = this._matrix.copy();
|
|
18219
|
+
this._matrix.scale(matrixData.scaleX, matrixData.scaleY);
|
|
18220
|
+
this._matrix.translate(matrixData.translateX, matrixData.translateY);
|
|
18221
18221
|
this.subject.publish(this, {
|
|
18222
18222
|
class: "Transformation",
|
|
18223
18223
|
method: "applyMatrix",
|
package/dist/cjs/node.js
CHANGED
|
@@ -20755,9 +20755,9 @@ class Transformation {
|
|
|
20755
20755
|
}, timeStamp);
|
|
20756
20756
|
}
|
|
20757
20757
|
applyMatrixSilent(matrixData) {
|
|
20758
|
-
this.previous = this.
|
|
20759
|
-
this.
|
|
20760
|
-
this.
|
|
20758
|
+
this.previous = this._matrix.copy();
|
|
20759
|
+
this._matrix.scale(matrixData.scaleX, matrixData.scaleY);
|
|
20760
|
+
this._matrix.translate(matrixData.translateX, matrixData.translateY);
|
|
20761
20761
|
this.subject.publish(this, {
|
|
20762
20762
|
class: "Transformation",
|
|
20763
20763
|
method: "applyMatrix",
|
package/dist/esm/browser.js
CHANGED
|
@@ -18044,9 +18044,9 @@ class Transformation {
|
|
|
18044
18044
|
}, timeStamp);
|
|
18045
18045
|
}
|
|
18046
18046
|
applyMatrixSilent(matrixData) {
|
|
18047
|
-
this.previous = this.
|
|
18048
|
-
this.
|
|
18049
|
-
this.
|
|
18047
|
+
this.previous = this._matrix.copy();
|
|
18048
|
+
this._matrix.scale(matrixData.scaleX, matrixData.scaleY);
|
|
18049
|
+
this._matrix.translate(matrixData.translateX, matrixData.translateY);
|
|
18050
18050
|
this.subject.publish(this, {
|
|
18051
18051
|
class: "Transformation",
|
|
18052
18052
|
method: "applyMatrix",
|
package/dist/esm/index.js
CHANGED
|
@@ -18037,9 +18037,9 @@ class Transformation {
|
|
|
18037
18037
|
}, timeStamp);
|
|
18038
18038
|
}
|
|
18039
18039
|
applyMatrixSilent(matrixData) {
|
|
18040
|
-
this.previous = this.
|
|
18041
|
-
this.
|
|
18042
|
-
this.
|
|
18040
|
+
this.previous = this._matrix.copy();
|
|
18041
|
+
this._matrix.scale(matrixData.scaleX, matrixData.scaleY);
|
|
18042
|
+
this._matrix.translate(matrixData.translateX, matrixData.translateY);
|
|
18043
18043
|
this.subject.publish(this, {
|
|
18044
18044
|
class: "Transformation",
|
|
18045
18045
|
method: "applyMatrix",
|
package/dist/esm/node.js
CHANGED
|
@@ -20572,9 +20572,9 @@ class Transformation {
|
|
|
20572
20572
|
}, timeStamp);
|
|
20573
20573
|
}
|
|
20574
20574
|
applyMatrixSilent(matrixData) {
|
|
20575
|
-
this.previous = this.
|
|
20576
|
-
this.
|
|
20577
|
-
this.
|
|
20575
|
+
this.previous = this._matrix.copy();
|
|
20576
|
+
this._matrix.scale(matrixData.scaleX, matrixData.scaleY);
|
|
20577
|
+
this._matrix.translate(matrixData.translateX, matrixData.translateY);
|
|
20578
20578
|
this.subject.publish(this, {
|
|
20579
20579
|
class: "Transformation",
|
|
20580
20580
|
method: "applyMatrix",
|