geometrix 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +8 -8
package/dist/index.d.ts CHANGED
@@ -640,8 +640,8 @@ type tT3dMatrix = [tVec4, tVec4, tVec4, tVec4];
640
640
  declare class Transform3d {
641
641
  mmat: tT3dMatrix;
642
642
  constructor(iMat: tT3dMatrix);
643
- addRotation(ax: number, ay: number, az: number): Transform3d;
644
- addTranslation(ax: number, ay: number, az: number): Transform3d;
643
+ addRotation(ax: number, ay: number, az: number): this;
644
+ addTranslation(ax: number, ay: number, az: number): this;
645
645
  getMatrix(): tT3dMatrix;
646
646
  getRotation(): tVec3;
647
647
  getTranslation(): tVec3;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geometrix",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "The 2D geometry engine of the parametrix",
5
5
  "private": false,
6
6
  "repository": {
@@ -63,21 +63,21 @@
63
63
  "clean": "rimraf dist node_modules"
64
64
  },
65
65
  "dependencies": {
66
- "@zip.js/zip.js": "^2.7.54",
66
+ "@zip.js/zip.js": "^2.7.57",
67
67
  "json5": "^2.2.3"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@eslint/js": "^9.10.0",
71
71
  "@types/eslint__js": "^8.42.3",
72
- "@types/node": "^22.10.10",
73
- "eslint": "^9.19.0",
72
+ "@types/node": "^22.13.1",
73
+ "eslint": "^9.20.0",
74
74
  "eslint-config-prettier": "^10.0.1",
75
75
  "npm-run-all2": "^7.0.2",
76
- "prettier": "^3.4.2",
76
+ "prettier": "^3.5.0",
77
77
  "rimraf": "^6.0.1",
78
- "tsup": "^8.3.5",
78
+ "tsup": "^8.3.6",
79
79
  "typescript": "^5.7.3",
80
- "typescript-eslint": "^8.21.0",
81
- "vitest": "^3.0.4"
80
+ "typescript-eslint": "^8.23.0",
81
+ "vitest": "^3.0.5"
82
82
  }
83
83
  }