@thi.ng/math 5.3.7 → 5.3.8
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 +4 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
2
|
|
|
3
|
-
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/math)
|
|
6
6
|

|
|
@@ -12,7 +12,7 @@ This project is part of the
|
|
|
12
12
|
For the Clojure version, please visit: [thi.ng/math-clj](https://thi.ng/math-clj)
|
|
13
13
|
|
|
14
14
|
- [About](#about)
|
|
15
|
-
|
|
15
|
+
- [Status](#status)
|
|
16
16
|
- [Breaking changes in v4.0.0](#breaking-changes-in-v400)
|
|
17
17
|
- [Installation](#installation)
|
|
18
18
|
- [Dependencies](#dependencies)
|
|
@@ -32,7 +32,7 @@ Partially ported from Clojure version
|
|
|
32
32
|
[c.thi.ng](https://github.com/thi-ng/c-thing) and
|
|
33
33
|
[thi.ng/vexed-generation](https://github.com/thi-ng/vexed-generation).
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
## Status
|
|
36
36
|
|
|
37
37
|
**STABLE** - used in production
|
|
38
38
|
|
|
@@ -95,6 +95,7 @@ A selection:
|
|
|
95
95
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/scenegraph.png" width="240"/> | 2D scenegraph & shape picking | [Demo](https://demo.thi.ng/umbrella/scenegraph/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph) |
|
|
96
96
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/scenegraph-image.png" width="240"/> | 2D scenegraph & image map based geometry manipulation | [Demo](https://demo.thi.ng/umbrella/scenegraph-image/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph-image) |
|
|
97
97
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/svg-barchart.png" width="240"/> | Simplistic SVG bar chart component | [Demo](https://demo.thi.ng/umbrella/svg-barchart/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/svg-barchart) |
|
|
98
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/svg-resample.png" width="240"/> | SVG path parsing & dynamic resampling | [Demo](https://demo.thi.ng/umbrella/svg-resample/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/svg-resample) |
|
|
98
99
|
|
|
99
100
|
## API
|
|
100
101
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/math",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.8",
|
|
4
4
|
"description": "Assorted common math functions & utilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.4.
|
|
37
|
+
"@thi.ng/api": "^8.4.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@microsoft/api-extractor": "^7.
|
|
41
|
-
"@thi.ng/testament": "^0.
|
|
40
|
+
"@microsoft/api-extractor": "^7.31.1",
|
|
41
|
+
"@thi.ng/testament": "^0.3.0",
|
|
42
42
|
"rimraf": "^3.0.2",
|
|
43
43
|
"tools": "^0.0.1",
|
|
44
44
|
"typedoc": "^0.22.17",
|
|
45
|
-
"typescript": "^4.
|
|
45
|
+
"typescript": "^4.8.3"
|
|
46
46
|
},
|
|
47
47
|
"keywords": [
|
|
48
48
|
"animation",
|
|
@@ -132,5 +132,5 @@
|
|
|
132
132
|
"thi.ng": {
|
|
133
133
|
"year": 2013
|
|
134
134
|
},
|
|
135
|
-
"gitHead": "
|
|
135
|
+
"gitHead": "973139c5aa3b50081020f4cc726a7cc330f77fc7\n"
|
|
136
136
|
}
|