@thi.ng/dual-algebra 1.0.37 → 1.0.38
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/README.md +13 -12
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
|
-
<!-- Please see: https://
|
|
3
|
-
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/dual-algebra)
|
|
6
6
|

|
|
@@ -8,11 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
10
|
> This is one of 214 standalone projects, maintained as part
|
|
11
|
-
> of the [@thi.ng/umbrella](https://
|
|
11
|
+
> of the [@thi.ng/umbrella](https://codeberg.org/thi.ng/umbrella/) ecosystem
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
|
14
|
-
> 🚀 Please help me to work full-time on these projects by [sponsoring
|
|
15
|
-
>
|
|
14
|
+
> 🚀 Please help me to work full-time on these projects by [sponsoring
|
|
15
|
+
> me](https://codeberg.org/thi.ng/umbrella/src/branch/develop/CONTRIBUTING.md#donations).
|
|
16
|
+
> Thank you! ❤️
|
|
16
17
|
|
|
17
18
|
- [About](#about)
|
|
18
19
|
- [Status](#status)
|
|
@@ -118,11 +119,11 @@ are suffixed with `S` (for "scalar"): `quadraticS`, `cubicS` and `quarticS`...
|
|
|
118
119
|
|
|
119
120
|
**ALPHA** - bleeding edge / work-in-progress
|
|
120
121
|
|
|
121
|
-
[Search or submit any issues for this package](https://
|
|
122
|
+
[Search or submit any issues for this package](https://codeberg.org/thi.ng/umbrella/issues?q=%5Bdual-algebra%5D)
|
|
122
123
|
|
|
123
124
|
## Related packages
|
|
124
125
|
|
|
125
|
-
- [@thi.ng/math](https://
|
|
126
|
+
- [@thi.ng/math](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/math) - Assorted common math functions & utilities
|
|
126
127
|
|
|
127
128
|
## Installation
|
|
128
129
|
|
|
@@ -154,19 +155,19 @@ Package sizes (brotli'd, pre-treeshake): ESM: 992 bytes
|
|
|
154
155
|
|
|
155
156
|
## Dependencies
|
|
156
157
|
|
|
157
|
-
- [@thi.ng/api](https://
|
|
158
|
+
- [@thi.ng/api](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/api)
|
|
158
159
|
|
|
159
160
|
Note: @thi.ng/api is in _most_ cases a type-only import (not used at runtime)
|
|
160
161
|
|
|
161
162
|
## Usage examples
|
|
162
163
|
|
|
163
164
|
One project in this repo's
|
|
164
|
-
[/examples](https://
|
|
165
|
+
[/examples](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples)
|
|
165
166
|
directory is using this package:
|
|
166
167
|
|
|
167
|
-
| Screenshot | Description | Live demo | Source
|
|
168
|
-
|
|
169
|
-
| <img src="https://
|
|
168
|
+
| Screenshot | Description | Live demo | Source |
|
|
169
|
+
|:----------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------|
|
|
170
|
+
| <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/spline-tangent.png" width="240"/> | Compute cubic spline position & tangent using Dual Numbers | [Demo](https://demo.thi.ng/umbrella/spline-tangent/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/spline-tangent) |
|
|
170
171
|
|
|
171
172
|
## API
|
|
172
173
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/dual-algebra",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.38",
|
|
4
4
|
"description": "Multivariate dual number algebra, automatic differentiation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://
|
|
11
|
+
"url": "git+https://codeberg.org/thi.ng/umbrella.git",
|
|
12
12
|
"directory": "packages/dual-algebra"
|
|
13
13
|
},
|
|
14
14
|
"homepage": "https://thi.ng/dual-algebra",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.12.
|
|
43
|
+
"@thi.ng/api": "^8.12.18"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"esbuild": "^0.27.2",
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
"status": "alpha",
|
|
95
95
|
"year": 2020
|
|
96
96
|
},
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "8ddf86ea0a1e658ddbf19cc645b29d0c176e29c4\n"
|
|
98
98
|
}
|