@thi.ng/geom-sdf 0.2.21 → 0.2.23

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -9
  2. package/package.json +18 -18
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2022-10-28T19:08:39Z
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.21",
3
+ "version": "0.2.23",
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.5",
38
- "@thi.ng/checks": "^3.3.2",
39
- "@thi.ng/defmulti": "^2.1.20",
40
- "@thi.ng/errors": "^2.2.3",
41
- "@thi.ng/geom": "^3.4.20",
42
- "@thi.ng/geom-api": "^3.3.17",
43
- "@thi.ng/geom-isoline": "^2.1.31",
44
- "@thi.ng/geom-poly-utils": "^2.3.18",
45
- "@thi.ng/geom-resample": "^2.1.34",
46
- "@thi.ng/math": "^5.3.12",
47
- "@thi.ng/transducers": "^8.3.22",
48
- "@thi.ng/vectors": "^7.5.23"
37
+ "@thi.ng/api": "^8.5.0",
38
+ "@thi.ng/checks": "^3.3.3",
39
+ "@thi.ng/defmulti": "^2.1.22",
40
+ "@thi.ng/errors": "^2.2.4",
41
+ "@thi.ng/geom": "^3.4.22",
42
+ "@thi.ng/geom-api": "^3.3.19",
43
+ "@thi.ng/geom-isoline": "^2.1.33",
44
+ "@thi.ng/geom-poly-utils": "^2.3.20",
45
+ "@thi.ng/geom-resample": "^2.1.36",
46
+ "@thi.ng/math": "^5.3.14",
47
+ "@thi.ng/transducers": "^8.3.24",
48
+ "@thi.ng/vectors": "^7.5.25"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@microsoft/api-extractor": "^7.33.5",
52
- "@thi.ng/testament": "^0.3.4",
52
+ "@thi.ng/testament": "^0.3.5",
53
53
  "rimraf": "^3.0.2",
54
54
  "tools": "^0.0.1",
55
- "typedoc": "^0.23.18",
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
- "*.js",
85
- "*.d.ts"
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": "a4b60163a8caddceed5ec1b6b3584d164f61e7b6\n"
130
+ "gitHead": "75ec32ff7f1b7b5e72e7a04ace24732cd5d6c774\n"
131
131
  }