@thi.ng/geom-sdf 0.2.44 → 0.2.45

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-03-14T13:27:19Z
3
+ - **Last updated**: 2023-03-27T19:05:49Z
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.
package/dist.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ReadonlyVec } from "@thi.ng/vectors/api";
1
+ import { type ReadonlyVec } from "@thi.ng/vectors/api";
2
2
  /**
3
3
  * Computes signed distance to centered 2D circle of given `radius`.
4
4
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom-sdf",
3
- "version": "0.2.44",
3
+ "version": "0.2.45",
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,26 +34,26 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.7.4",
38
- "@thi.ng/checks": "^3.3.10",
39
- "@thi.ng/defmulti": "^2.1.33",
40
- "@thi.ng/errors": "^2.2.13",
41
- "@thi.ng/geom": "^4.4.0",
42
- "@thi.ng/geom-api": "^3.4.11",
43
- "@thi.ng/geom-isoline": "^2.1.49",
44
- "@thi.ng/geom-poly-utils": "^2.3.37",
45
- "@thi.ng/geom-resample": "^2.2.11",
46
- "@thi.ng/math": "^5.4.5",
47
- "@thi.ng/transducers": "^8.4.0",
48
- "@thi.ng/vectors": "^7.6.9"
37
+ "@thi.ng/api": "^8.7.5",
38
+ "@thi.ng/checks": "^3.3.11",
39
+ "@thi.ng/defmulti": "^2.1.34",
40
+ "@thi.ng/errors": "^2.2.14",
41
+ "@thi.ng/geom": "^4.4.1",
42
+ "@thi.ng/geom-api": "^3.4.12",
43
+ "@thi.ng/geom-isoline": "^2.1.50",
44
+ "@thi.ng/geom-poly-utils": "^2.3.38",
45
+ "@thi.ng/geom-resample": "^2.2.12",
46
+ "@thi.ng/math": "^5.4.6",
47
+ "@thi.ng/transducers": "^8.4.1",
48
+ "@thi.ng/vectors": "^7.6.10"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@microsoft/api-extractor": "^7.34.4",
52
- "@thi.ng/testament": "^0.3.13",
53
- "rimraf": "^4.4.0",
52
+ "@thi.ng/testament": "^0.3.14",
53
+ "rimraf": "^4.4.1",
54
54
  "tools": "^0.0.1",
55
- "typedoc": "^0.23.26",
56
- "typescript": "^4.9.5"
55
+ "typedoc": "^0.23.28",
56
+ "typescript": "^5.0.2"
57
57
  },
58
58
  "keywords": [
59
59
  "2d",
@@ -127,5 +127,5 @@
127
127
  "status": "alpha",
128
128
  "year": 2022
129
129
  },
130
- "gitHead": "51a3361eb4b4e906ff6dfc114049f1ea9cd97d0e\n"
130
+ "gitHead": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
131
131
  }
package/shapes.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ReadonlyVec } from "@thi.ng/vectors";
1
+ import { type ReadonlyVec } from "@thi.ng/vectors";
2
2
  import type { SDFAttribs, SDFn } from "./api.js";
3
3
  /** @internal */
4
4
  export declare const DEFAULT_ATTRIBS: SDFAttribs;