@thi.ng/geom-splines 2.2.104 → 2.2.106

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**: 2024-04-23T07:02:18Z
3
+ - **Last updated**: 2024-05-08T18:24:32Z
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom-splines",
3
- "version": "2.2.104",
3
+ "version": "2.2.106",
4
4
  "description": "nD cubic & quadratic curve analysis, conversion, interpolation, splitting",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,19 +36,19 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.11.1",
40
- "@thi.ng/checks": "^3.6.3",
41
- "@thi.ng/geom-api": "^4.0.8",
42
- "@thi.ng/geom-arc": "^2.1.130",
43
- "@thi.ng/geom-resample": "^2.3.51",
44
- "@thi.ng/math": "^5.10.12",
45
- "@thi.ng/vectors": "^7.10.29"
39
+ "@thi.ng/api": "^8.11.2",
40
+ "@thi.ng/checks": "^3.6.4",
41
+ "@thi.ng/geom-api": "^4.0.10",
42
+ "@thi.ng/geom-arc": "^2.1.132",
43
+ "@thi.ng/geom-resample": "^2.3.53",
44
+ "@thi.ng/math": "^5.10.13",
45
+ "@thi.ng/vectors": "^7.10.31"
46
46
  },
47
47
  "devDependencies": {
48
- "@microsoft/api-extractor": "^7.43.0",
49
- "esbuild": "^0.20.2",
50
- "typedoc": "^0.25.12",
51
- "typescript": "^5.4.3"
48
+ "@microsoft/api-extractor": "^7.43.2",
49
+ "esbuild": "^0.21.1",
50
+ "typedoc": "^0.25.13",
51
+ "typescript": "^5.4.5"
52
52
  },
53
53
  "keywords": [
54
54
  "2d",
@@ -144,5 +144,5 @@
144
144
  "geom-subdiv-curve"
145
145
  ]
146
146
  },
147
- "gitHead": "5dd66c18a3862a3af69a5b2f49563f7cbdd960c2\n"
147
+ "gitHead": "df34b4a9e650cc7323575356de207d78933bdcf3\n"
148
148
  }
@@ -8,8 +8,7 @@ const solveQuadratic = (a, b, c) => {
8
8
  };
9
9
  const inBounds = (p, min2, max2) => {
10
10
  for (let i = p.length; i-- > 0; ) {
11
- if (!inRange(p[i], min2[i], max2[i]))
12
- return false;
11
+ if (!inRange(p[i], min2[i], max2[i])) return false;
13
12
  }
14
13
  return true;
15
14
  };