brepkit-wasm 2.109.0 → 2.109.1

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/brepkit_wasm.d.ts CHANGED
@@ -1475,12 +1475,13 @@ export class BrepKernel {
1475
1475
  * Convex Minkowski sum of two solids (`A ⊕ B`).
1476
1476
  *
1477
1477
  * Returns the convex hull of all pairwise vertex sums — exact for convex
1478
- * inputs (boxes, or a tessellated-sphere rolling tool), a convex
1478
+ * polytopes (boxes, or a tessellated-sphere rolling tool), a convex
1479
1479
  * over-approximation otherwise. Returns a solid handle (`u32`).
1480
1480
  *
1481
1481
  * # Errors
1482
1482
  *
1483
- * Returns an error if either handle is invalid or either solid is empty.
1483
+ * Returns an error if either handle is invalid, either solid is empty, or
1484
+ * the summed points are degenerate so no hull can be built.
1484
1485
  */
1485
1486
  minkowskiSum(solid_a: number, solid_b: number): number;
1486
1487
  /**
@@ -3267,12 +3267,13 @@ export class BrepKernel {
3267
3267
  * Convex Minkowski sum of two solids (`A ⊕ B`).
3268
3268
  *
3269
3269
  * Returns the convex hull of all pairwise vertex sums — exact for convex
3270
- * inputs (boxes, or a tessellated-sphere rolling tool), a convex
3270
+ * polytopes (boxes, or a tessellated-sphere rolling tool), a convex
3271
3271
  * over-approximation otherwise. Returns a solid handle (`u32`).
3272
3272
  *
3273
3273
  * # Errors
3274
3274
  *
3275
- * Returns an error if either handle is invalid or either solid is empty.
3275
+ * Returns an error if either handle is invalid, either solid is empty, or
3276
+ * the summed points are degenerate so no hull can be built.
3276
3277
  * @param {number} solid_a
3277
3278
  * @param {number} solid_b
3278
3279
  * @returns {number}
@@ -5061,13 +5062,13 @@ export function __wbg___wbindgen_debug_string_0accd80f45e5faa2(arg0, arg1) {
5061
5062
  export function __wbg___wbindgen_throw_1506f2235d1bdba0(arg0, arg1) {
5062
5063
  throw new Error(getStringFromWasm0(arg0, arg1));
5063
5064
  }
5064
- export function __wbg_error_b90644cfaa2e7810(arg0, arg1) {
5065
+ export function __wbg_error_7bbef3537899b2e1(arg0, arg1) {
5065
5066
  console.error(getStringFromWasm0(arg0, arg1));
5066
5067
  }
5067
- export function __wbg_log_09b8ace0eff11254(arg0, arg1) {
5068
+ export function __wbg_log_2a6e9f59e26fd4df(arg0, arg1) {
5068
5069
  console.log(getStringFromWasm0(arg0, arg1));
5069
5070
  }
5070
- export function __wbg_warn_60c69ccb1a8dba56(arg0, arg1) {
5071
+ export function __wbg_warn_23c0d36e90a2667c(arg0, arg1) {
5071
5072
  console.warn(getStringFromWasm0(arg0, arg1));
5072
5073
  }
5073
5074
  export function __wbindgen_cast_0000000000000001(arg0, arg1) {
Binary file
@@ -3269,12 +3269,13 @@ class BrepKernel {
3269
3269
  * Convex Minkowski sum of two solids (`A ⊕ B`).
3270
3270
  *
3271
3271
  * Returns the convex hull of all pairwise vertex sums — exact for convex
3272
- * inputs (boxes, or a tessellated-sphere rolling tool), a convex
3272
+ * polytopes (boxes, or a tessellated-sphere rolling tool), a convex
3273
3273
  * over-approximation otherwise. Returns a solid handle (`u32`).
3274
3274
  *
3275
3275
  * # Errors
3276
3276
  *
3277
- * Returns an error if either handle is invalid or either solid is empty.
3277
+ * Returns an error if either handle is invalid, either solid is empty, or
3278
+ * the summed points are degenerate so no hull can be built.
3278
3279
  * @param {number} solid_a
3279
3280
  * @param {number} solid_b
3280
3281
  * @returns {number}
@@ -5073,13 +5074,13 @@ function __wbg_get_imports() {
5073
5074
  __wbg___wbindgen_throw_1506f2235d1bdba0: function(arg0, arg1) {
5074
5075
  throw new Error(getStringFromWasm0(arg0, arg1));
5075
5076
  },
5076
- __wbg_error_b90644cfaa2e7810: function(arg0, arg1) {
5077
+ __wbg_error_7bbef3537899b2e1: function(arg0, arg1) {
5077
5078
  console.error(getStringFromWasm0(arg0, arg1));
5078
5079
  },
5079
- __wbg_log_09b8ace0eff11254: function(arg0, arg1) {
5080
+ __wbg_log_2a6e9f59e26fd4df: function(arg0, arg1) {
5080
5081
  console.log(getStringFromWasm0(arg0, arg1));
5081
5082
  },
5082
- __wbg_warn_60c69ccb1a8dba56: function(arg0, arg1) {
5083
+ __wbg_warn_23c0d36e90a2667c: function(arg0, arg1) {
5083
5084
  console.warn(getStringFromWasm0(arg0, arg1));
5084
5085
  },
5085
5086
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "brepkit-wasm",
3
3
  "type": "module",
4
4
  "description": "WebAssembly bindings for brepkit — browser-native B-Rep solid modeling",
5
- "version": "2.109.0",
5
+ "version": "2.109.1",
6
6
  "license": "MIT OR Apache-2.0",
7
7
  "repository": {
8
8
  "type": "git",