@js-draw/math 1.4.0 → 1.6.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/Mat33.d.ts +1 -1
- package/dist/cjs/Mat33.js +1 -1
- package/dist/mjs/Mat33.d.ts +1 -1
- package/dist/mjs/Mat33.mjs +1 -1
- package/package.json +5 -5
- package/src/Mat33.ts +1 -1
package/dist/cjs/Mat33.d.ts
CHANGED
@@ -130,7 +130,7 @@ export declare class Mat33 {
|
|
130
130
|
/**
|
131
131
|
* **Note**: Assumes `this.c1 = this.c2 = 0` and `this.c3 = 1`.
|
132
132
|
*
|
133
|
-
* @see {@link fromCSSMatrix}
|
133
|
+
* @see {@link fromCSSMatrix}
|
134
134
|
*/
|
135
135
|
toCSSMatrix(): string;
|
136
136
|
/**
|
package/dist/cjs/Mat33.js
CHANGED
@@ -320,7 +320,7 @@ class Mat33 {
|
|
320
320
|
/**
|
321
321
|
* **Note**: Assumes `this.c1 = this.c2 = 0` and `this.c3 = 1`.
|
322
322
|
*
|
323
|
-
* @see {@link fromCSSMatrix}
|
323
|
+
* @see {@link fromCSSMatrix}
|
324
324
|
*/
|
325
325
|
toCSSMatrix() {
|
326
326
|
return `matrix(${this.a1},${this.b1},${this.a2},${this.b2},${this.a3},${this.b3})`;
|
package/dist/mjs/Mat33.d.ts
CHANGED
@@ -130,7 +130,7 @@ export declare class Mat33 {
|
|
130
130
|
/**
|
131
131
|
* **Note**: Assumes `this.c1 = this.c2 = 0` and `this.c3 = 1`.
|
132
132
|
*
|
133
|
-
* @see {@link fromCSSMatrix}
|
133
|
+
* @see {@link fromCSSMatrix}
|
134
134
|
*/
|
135
135
|
toCSSMatrix(): string;
|
136
136
|
/**
|
package/dist/mjs/Mat33.mjs
CHANGED
@@ -314,7 +314,7 @@ export class Mat33 {
|
|
314
314
|
/**
|
315
315
|
* **Note**: Assumes `this.c1 = this.c2 = 0` and `this.c3 = 1`.
|
316
316
|
*
|
317
|
-
* @see {@link fromCSSMatrix}
|
317
|
+
* @see {@link fromCSSMatrix}
|
318
318
|
*/
|
319
319
|
toCSSMatrix() {
|
320
320
|
return `matrix(${this.a1},${this.b1},${this.a2},${this.b2},${this.a3},${this.b3})`;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@js-draw/math",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.6.1",
|
4
4
|
"description": "A math library for js-draw. ",
|
5
5
|
"types": "./dist/mjs/lib.d.ts",
|
6
6
|
"main": "./dist/cjs/lib.js",
|
@@ -28,10 +28,10 @@
|
|
28
28
|
"bezier-js": "6.1.3"
|
29
29
|
},
|
30
30
|
"devDependencies": {
|
31
|
-
"@js-draw/build-tool": "^1.
|
31
|
+
"@js-draw/build-tool": "^1.6.1",
|
32
32
|
"@types/bezier-js": "4.1.0",
|
33
|
-
"@types/jest": "29.5.
|
34
|
-
"@types/jsdom": "21.1.
|
33
|
+
"@types/jest": "29.5.5",
|
34
|
+
"@types/jsdom": "21.1.3"
|
35
35
|
},
|
36
36
|
"bugs": {
|
37
37
|
"url": "https://github.com/personalizedrefrigerator/js-draw/issues"
|
@@ -45,5 +45,5 @@
|
|
45
45
|
"svg",
|
46
46
|
"math"
|
47
47
|
],
|
48
|
-
"gitHead": "
|
48
|
+
"gitHead": "00f1a0ab34de40bec100d5c18657f947895bfaed"
|
49
49
|
}
|
package/src/Mat33.ts
CHANGED
@@ -423,7 +423,7 @@ export class Mat33 {
|
|
423
423
|
/**
|
424
424
|
* **Note**: Assumes `this.c1 = this.c2 = 0` and `this.c3 = 1`.
|
425
425
|
*
|
426
|
-
* @see {@link fromCSSMatrix}
|
426
|
+
* @see {@link fromCSSMatrix}
|
427
427
|
*/
|
428
428
|
public toCSSMatrix(): string {
|
429
429
|
return `matrix(${this.a1},${this.b1},${this.a2},${this.b2},${this.a3},${this.b3})`;
|