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 +3 -2
- package/brepkit_wasm_bg.js +6 -5
- package/brepkit_wasm_bg.wasm +0 -0
- package/brepkit_wasm_node.cjs +6 -5
- package/package.json +1 -1
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
|
-
*
|
|
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
|
|
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
|
/**
|
package/brepkit_wasm_bg.js
CHANGED
|
@@ -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
|
-
*
|
|
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
|
|
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
|
|
5065
|
+
export function __wbg_error_7bbef3537899b2e1(arg0, arg1) {
|
|
5065
5066
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
5066
5067
|
}
|
|
5067
|
-
export function
|
|
5068
|
+
export function __wbg_log_2a6e9f59e26fd4df(arg0, arg1) {
|
|
5068
5069
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
5069
5070
|
}
|
|
5070
|
-
export function
|
|
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) {
|
package/brepkit_wasm_bg.wasm
CHANGED
|
Binary file
|
package/brepkit_wasm_node.cjs
CHANGED
|
@@ -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
|
-
*
|
|
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
|
|
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
|
-
|
|
5077
|
+
__wbg_error_7bbef3537899b2e1: function(arg0, arg1) {
|
|
5077
5078
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
5078
5079
|
},
|
|
5079
|
-
|
|
5080
|
+
__wbg_log_2a6e9f59e26fd4df: function(arg0, arg1) {
|
|
5080
5081
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
5081
5082
|
},
|
|
5082
|
-
|
|
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