@thi.ng/timestep 0.5.0 → 0.5.1
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 +1 -1
- package/README.md +7 -4
- package/package.json +7 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -13,6 +13,7 @@ This project is part of the
|
|
|
13
13
|
- [About](#about)
|
|
14
14
|
- [Managing fixed timestep updates](#managing-fixed-timestep-updates)
|
|
15
15
|
- [Status](#status)
|
|
16
|
+
- [Related packages](#related-packages)
|
|
16
17
|
- [Installation](#installation)
|
|
17
18
|
- [Dependencies](#dependencies)
|
|
18
19
|
- [Usage examples](#usage-examples)
|
|
@@ -133,6 +134,10 @@ after 1 second (25 frames)...
|
|
|
133
134
|
|
|
134
135
|
[Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Btimestep%5D+in%3Atitle)
|
|
135
136
|
|
|
137
|
+
## Related packages
|
|
138
|
+
|
|
139
|
+
- [@thi.ng/boids](https://github.com/thi-ng/umbrella/tree/develop/packages/boids) - n-dimensional boids simulation with highly configurable behaviors
|
|
140
|
+
|
|
136
141
|
## Installation
|
|
137
142
|
|
|
138
143
|
```bash
|
|
@@ -163,11 +168,9 @@ Package sizes (brotli'd, pre-treeshake): ESM: 821 bytes
|
|
|
163
168
|
|
|
164
169
|
## Usage examples
|
|
165
170
|
|
|
166
|
-
|
|
171
|
+
One project in this repo's
|
|
167
172
|
[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
|
|
168
|
-
directory
|
|
169
|
-
|
|
170
|
-
A selection:
|
|
173
|
+
directory is using this package:
|
|
171
174
|
|
|
172
175
|
| Screenshot | Description | Live demo | Source |
|
|
173
176
|
|:-------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------|:--------------------------------------------------|:-------------------------------------------------------------------------------|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/timestep",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Deterministic fixed timestep simulation updates with state interpolation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@thi.ng/api": "^8.9.6",
|
|
38
|
-
"@thi.ng/math": "^5.7.
|
|
39
|
-
"@thi.ng/vectors": "^7.8.
|
|
38
|
+
"@thi.ng/math": "^5.7.1",
|
|
39
|
+
"@thi.ng/vectors": "^7.8.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@microsoft/api-extractor": "^7.38.0",
|
|
@@ -85,8 +85,11 @@
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"thi.ng": {
|
|
88
|
+
"related": [
|
|
89
|
+
"boids"
|
|
90
|
+
],
|
|
88
91
|
"status": "alpha",
|
|
89
92
|
"year": 2023
|
|
90
93
|
},
|
|
91
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "bfa16829786146bd24df3cdbd44649a45a603e44\n"
|
|
92
95
|
}
|