@thi.ng/matrices 2.4.13 → 2.4.15

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-08-18T14:11:34Z
3
+ - **Last updated**: 2024-10-05T12:12:32Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/matrices",
3
- "version": "2.4.13",
3
+ "version": "2.4.15",
4
4
  "description": "Matrix & quaternion operations for 2D/3D geometry processing",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,16 +36,16 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.11.9",
40
- "@thi.ng/checks": "^3.6.11",
41
- "@thi.ng/math": "^5.11.9",
42
- "@thi.ng/vectors": "^7.12.1"
39
+ "@thi.ng/api": "^8.11.11",
40
+ "@thi.ng/checks": "^3.6.13",
41
+ "@thi.ng/math": "^5.11.11",
42
+ "@thi.ng/vectors": "^7.12.3"
43
43
  },
44
44
  "devDependencies": {
45
- "@microsoft/api-extractor": "^7.47.5",
46
- "esbuild": "^0.23.0",
47
- "typedoc": "^0.26.5",
48
- "typescript": "^5.5.4"
45
+ "@microsoft/api-extractor": "^7.47.9",
46
+ "esbuild": "^0.24.0",
47
+ "typedoc": "^0.26.7",
48
+ "typescript": "^5.6.2"
49
49
  },
50
50
  "keywords": [
51
51
  "2d",
@@ -275,5 +275,5 @@
275
275
  ],
276
276
  "year": 2018
277
277
  },
278
- "gitHead": "8335e9571c2b9b13844ee4d8d24f99143c5f8816\n"
278
+ "gitHead": "11ae480076e61a2263f5730ffb37dfddbf01c7d1\n"
279
279
  }
package/quat-euler.d.ts CHANGED
@@ -8,5 +8,5 @@ export type AxisOrder = "xyz" | "yxz" | "xzy" | "zxy" | "yzx" | "zyx";
8
8
  * @param b -
9
9
  * @param c -
10
10
  */
11
- export declare const quatFromEuler: (order: AxisOrder, a: number, b: number, c: number) => import("@thi.ng/vectors/api").Vec;
11
+ export declare const quatFromEuler: (order: AxisOrder, a: number, b: number, c: number) => import("@thi.ng/vectors").Vec;
12
12
  //# sourceMappingURL=quat-euler.d.ts.map
package/quat-m44.d.ts CHANGED
@@ -7,5 +7,5 @@ import type { Mat } from "./api.js";
7
7
  * @param out -
8
8
  * @param q -
9
9
  */
10
- export declare const quatToMat44: (out: Mat | null, a: ReadonlyVec, t?: ReadonlyVec) => import("@thi.ng/vectors/api").Vec;
10
+ export declare const quatToMat44: (out: Mat | null, a: ReadonlyVec, t?: ReadonlyVec) => import("@thi.ng/vectors").Vec;
11
11
  //# sourceMappingURL=quat-m44.d.ts.map