@thi.ng/matrices 3.0.53 → 3.0.54

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/README.md +3 -2
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  > [!NOTE]
10
10
 
11
- > This is one of 216 standalone projects. LLM-free, human-made and
11
+ > This is one of 217 standalone projects. LLM-free, human-made and
12
12
  > cared for software, maintained as part of the
13
13
  > [@thi.ng/umbrella](https://codeberg.org/thi.ng/umbrella/) ecosystem and
14
14
  > anti-framework.
@@ -108,7 +108,7 @@ Note: @thi.ng/api is in _most_ cases a type-only import (not used at runtime)
108
108
 
109
109
  ## Usage examples
110
110
 
111
- 18 projects in this repo's
111
+ 19 projects in this repo's
112
112
  [/examples](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples)
113
113
  directory are using this package:
114
114
 
@@ -131,6 +131,7 @@ directory are using this package:
131
131
  | <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/webgl-cube.png" width="240"/> | WebGL multi-colored cube mesh | [Demo](https://demo.thi.ng/umbrella/webgl-cube/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/webgl-cube) |
132
132
  | <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/webgl-cubemap.jpg" width="240"/> | WebGL cube maps with async texture loading | [Demo](https://demo.thi.ng/umbrella/webgl-cubemap/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/webgl-cubemap) |
133
133
  | <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/webgl-grid.jpg" width="240"/> | WebGL instancing, animated grid | [Demo](https://demo.thi.ng/umbrella/webgl-grid/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/webgl-grid) |
134
+ | <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/webgl-mesh.avif" width="240"/> | Basic thi.ng/geom-mesh creation and conversion from OBJ import | [Demo](https://demo.thi.ng/umbrella/webgl-mesh/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/webgl-mesh) |
134
135
  | <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/webgl-msdf.jpg" width="240"/> | WebGL MSDF text rendering & particle system | [Demo](https://demo.thi.ng/umbrella/webgl-msdf/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/webgl-msdf) |
135
136
 
136
137
  ## API
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/matrices",
3
- "version": "3.0.53",
3
+ "version": "3.0.54",
4
4
  "description": "Matrix & quaternion operations for 2D/3D geometry processing",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -40,14 +40,14 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@thi.ng/api": "^8.12.27",
44
- "@thi.ng/checks": "^3.11.0",
45
- "@thi.ng/math": "^5.15.16",
46
- "@thi.ng/vectors": "^8.6.38"
43
+ "@thi.ng/api": "^8.12.28",
44
+ "@thi.ng/checks": "^3.11.1",
45
+ "@thi.ng/math": "^5.15.17",
46
+ "@thi.ng/vectors": "^8.7.0"
47
47
  },
48
48
  "devDependencies": {
49
- "esbuild": "^0.28.1",
50
- "typedoc": "^0.28.19",
49
+ "esbuild": "^0.28.2",
50
+ "typedoc": "^0.28.20",
51
51
  "typescript": "^6.0.3"
52
52
  },
53
53
  "keywords": [
@@ -277,5 +277,5 @@
277
277
  ],
278
278
  "year": 2018
279
279
  },
280
- "gitHead": "6a4e7c564ebc476770d213d98a2aa6257a41ac15"
280
+ "gitHead": "57ce96457ee0b8de5b17f9d371e6707780c64bd7"
281
281
  }