@thi.ng/geom-sdf 0.2.21 → 0.2.22
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 +9 -9
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2022-
|
|
3
|
+
- **Last updated**: 2022-11-23T22:46:54Z
|
|
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.
|
|
@@ -13,6 +13,14 @@ and/or version bumps of transitive dependencies.
|
|
|
13
13
|
|
|
14
14
|
#### 🚀 Features
|
|
15
15
|
|
|
16
|
+
- add bounds pre-checks, update SDFAttribs, ops ([ddf0a6e](https://github.com/thi-ng/umbrella/commit/ddf0a6e))
|
|
17
|
+
- update `SDFn` signature, add opt. min dist param
|
|
18
|
+
- add `withBoundingCircle/Rect()` SDF wrappers
|
|
19
|
+
- update shape fns (points2, polygon2, polyline2)
|
|
20
|
+
- update SDF combinators (union, isec, diff etc.)
|
|
21
|
+
- update `asSDF()` group impl
|
|
22
|
+
- update `SDFAttribs`, allow `round` & `smooth` opts to be field based
|
|
23
|
+
- add docstrings
|
|
16
24
|
- major update: combinators, modifiers, shape support ([4ffbc86](https://github.com/thi-ng/umbrella/commit/4ffbc86))
|
|
17
25
|
- support more shapes (and conversions) in asSDF()
|
|
18
26
|
- update/extend SDFAttribs
|
|
@@ -23,14 +31,6 @@ and/or version bumps of transitive dependencies.
|
|
|
23
31
|
- add domain modifiers, update `sample2d()` to support domain mods
|
|
24
32
|
- update various distance functions (incl. uniform arg order, minimize allocs)
|
|
25
33
|
- add docstrings
|
|
26
|
-
- add bounds pre-checks, update SDFAttribs, ops ([ddf0a6e](https://github.com/thi-ng/umbrella/commit/ddf0a6e))
|
|
27
|
-
- update `SDFn` signature, add opt. min dist param
|
|
28
|
-
- add `withBoundingCircle/Rect()` SDF wrappers
|
|
29
|
-
- update shape fns (points2, polygon2, polyline2)
|
|
30
|
-
- update SDF combinators (union, isec, diff etc.)
|
|
31
|
-
- update `asSDF()` group impl
|
|
32
|
-
- update `SDFAttribs`, allow `round` & `smooth` opts to be field based
|
|
33
|
-
- add docstrings
|
|
34
34
|
|
|
35
35
|
### [0.1.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-sdf@0.1.1) (2022-06-20)
|
|
36
36
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/geom-sdf",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.22",
|
|
4
4
|
"description": "2D Signed Distance Field creation from @thi.ng/geom shapes, conversions, sampling, combinators",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,25 +34,25 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.4.
|
|
38
|
-
"@thi.ng/checks": "^3.3.
|
|
39
|
-
"@thi.ng/defmulti": "^2.1.
|
|
40
|
-
"@thi.ng/errors": "^2.2.
|
|
41
|
-
"@thi.ng/geom": "^3.4.
|
|
42
|
-
"@thi.ng/geom-api": "^3.3.
|
|
43
|
-
"@thi.ng/geom-isoline": "^2.1.
|
|
44
|
-
"@thi.ng/geom-poly-utils": "^2.3.
|
|
45
|
-
"@thi.ng/geom-resample": "^2.1.
|
|
46
|
-
"@thi.ng/math": "^5.3.
|
|
47
|
-
"@thi.ng/transducers": "^8.3.
|
|
48
|
-
"@thi.ng/vectors": "^7.5.
|
|
37
|
+
"@thi.ng/api": "^8.4.6",
|
|
38
|
+
"@thi.ng/checks": "^3.3.3",
|
|
39
|
+
"@thi.ng/defmulti": "^2.1.21",
|
|
40
|
+
"@thi.ng/errors": "^2.2.4",
|
|
41
|
+
"@thi.ng/geom": "^3.4.21",
|
|
42
|
+
"@thi.ng/geom-api": "^3.3.18",
|
|
43
|
+
"@thi.ng/geom-isoline": "^2.1.32",
|
|
44
|
+
"@thi.ng/geom-poly-utils": "^2.3.19",
|
|
45
|
+
"@thi.ng/geom-resample": "^2.1.35",
|
|
46
|
+
"@thi.ng/math": "^5.3.13",
|
|
47
|
+
"@thi.ng/transducers": "^8.3.23",
|
|
48
|
+
"@thi.ng/vectors": "^7.5.24"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@microsoft/api-extractor": "^7.33.5",
|
|
52
|
-
"@thi.ng/testament": "^0.3.
|
|
52
|
+
"@thi.ng/testament": "^0.3.5",
|
|
53
53
|
"rimraf": "^3.0.2",
|
|
54
54
|
"tools": "^0.0.1",
|
|
55
|
-
"typedoc": "^0.23.
|
|
55
|
+
"typedoc": "^0.23.20",
|
|
56
56
|
"typescript": "^4.8.4"
|
|
57
57
|
},
|
|
58
58
|
"keywords": [
|
|
@@ -81,8 +81,8 @@
|
|
|
81
81
|
"node": ">=14"
|
|
82
82
|
},
|
|
83
83
|
"files": [
|
|
84
|
-
"
|
|
85
|
-
"
|
|
84
|
+
"./*.js",
|
|
85
|
+
"./*.d.ts"
|
|
86
86
|
],
|
|
87
87
|
"exports": {
|
|
88
88
|
".": {
|
|
@@ -127,5 +127,5 @@
|
|
|
127
127
|
"status": "alpha",
|
|
128
128
|
"year": 2022
|
|
129
129
|
},
|
|
130
|
-
"gitHead": "
|
|
130
|
+
"gitHead": "044ee6a3895720fc78e115032d4d831b63510929\n"
|
|
131
131
|
}
|