@thi.ng/boids 1.0.19 → 1.0.20

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-03-09T09:18:17Z
3
+ - **Last updated**: 2024-03-13T14:04:31Z
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/boid.d.ts CHANGED
@@ -25,7 +25,7 @@ export declare class Boid implements ITimeStep {
25
25
  * Interplation step of the thi.ng/timestep update cycle. See
26
26
  * [`ITimeStep`](https://docs.thi.ng/umbrella/timestep/interfaces/ITimeStep.html)
27
27
  *
28
- * @param dt
28
+ * @param alpha
29
29
  * @param ctx
30
30
  */
31
31
  interpolate(alpha: number, ctx: ReadonlyTimeStep): void;
package/boid.js CHANGED
@@ -48,7 +48,7 @@ class Boid {
48
48
  * Interplation step of the thi.ng/timestep update cycle. See
49
49
  * [`ITimeStep`](https://docs.thi.ng/umbrella/timestep/interfaces/ITimeStep.html)
50
50
  *
51
- * @param dt
51
+ * @param alpha
52
52
  * @param ctx
53
53
  */
54
54
  interpolate(alpha, ctx) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/boids",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "description": "n-dimensional boids simulation with modular behavior system",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,21 +36,21 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.9.29",
40
- "@thi.ng/checks": "^3.5.2",
41
- "@thi.ng/distance": "^2.4.59",
42
- "@thi.ng/geom-closest-point": "^2.1.113",
43
- "@thi.ng/geom-resample": "^2.3.39",
44
- "@thi.ng/math": "^5.10.6",
45
- "@thi.ng/timestep": "^0.5.35",
46
- "@thi.ng/vectors": "^7.10.17"
39
+ "@thi.ng/api": "^8.9.30",
40
+ "@thi.ng/checks": "^3.5.3",
41
+ "@thi.ng/distance": "^2.4.60",
42
+ "@thi.ng/geom-closest-point": "^2.1.114",
43
+ "@thi.ng/geom-resample": "^2.3.40",
44
+ "@thi.ng/math": "^5.10.7",
45
+ "@thi.ng/timestep": "^0.5.36",
46
+ "@thi.ng/vectors": "^7.10.18"
47
47
  },
48
48
  "devDependencies": {
49
- "@microsoft/api-extractor": "^7.40.1",
50
- "esbuild": "^0.20.0",
49
+ "@microsoft/api-extractor": "^7.42.3",
50
+ "esbuild": "^0.20.1",
51
51
  "rimraf": "^5.0.5",
52
- "typedoc": "^0.25.7",
53
- "typescript": "^5.3.3"
52
+ "typedoc": "^0.25.12",
53
+ "typescript": "^5.4.2"
54
54
  },
55
55
  "keywords": [
56
56
  "nd",
@@ -144,5 +144,5 @@
144
144
  "status": "alpha",
145
145
  "year": 2023
146
146
  },
147
- "gitHead": "69100942474942f7446ac645d59d91e7dfc352f9\n"
147
+ "gitHead": "7f3fcbd6c0462b0ce45afa141fe163d1f297fd51\n"
148
148
  }