@js-draw/math 1.4.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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} and {@link toSafeCSSTransformList}
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} and {@link toSafeCSSTransformList}
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})`;
@@ -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} and {@link toSafeCSSTransformList}
133
+ * @see {@link fromCSSMatrix}
134
134
  */
135
135
  toCSSMatrix(): string;
136
136
  /**
@@ -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} and {@link toSafeCSSTransformList}
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.4.0",
3
+ "version": "1.6.0",
4
4
  "description": "A math library for js-draw. ",
5
5
  "types": "./dist/mjs/lib.d.ts",
6
6
  "main": "./dist/cjs/lib.js",
@@ -45,5 +45,5 @@
45
45
  "svg",
46
46
  "math"
47
47
  ],
48
- "gitHead": "b520078c16a4d23d9bed4531eafda87bfce3f6b1"
48
+ "gitHead": "c2278b6819ca0e464e4e7d2c3c2045e3394b1fe8"
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} and {@link toSafeCSSTransformList}
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})`;