brepkit-wasm 3.3.9 → 3.4.0
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 +2 -1
- package/brepkit_wasm_bg.js +5 -4
- package/brepkit_wasm_bg.wasm +0 -0
- package/brepkit_wasm_node.cjs +5 -4
- package/package.json +1 -1
package/brepkit_wasm.d.ts
CHANGED
|
@@ -605,7 +605,8 @@ export class BrepKernel {
|
|
|
605
605
|
*
|
|
606
606
|
* # Errors
|
|
607
607
|
*
|
|
608
|
-
* Returns an error if radius is non-positive
|
|
608
|
+
* Returns an error if radius is non-positive, edges are invalid, or no
|
|
609
|
+
* fillet engine can produce a valid changed solid.
|
|
609
610
|
*/
|
|
610
611
|
fillet(solid: number, edge_handles: Uint32Array, radius: number): number;
|
|
611
612
|
/**
|
package/brepkit_wasm_bg.js
CHANGED
|
@@ -1366,7 +1366,8 @@ export class BrepKernel {
|
|
|
1366
1366
|
*
|
|
1367
1367
|
* # Errors
|
|
1368
1368
|
*
|
|
1369
|
-
* Returns an error if radius is non-positive
|
|
1369
|
+
* Returns an error if radius is non-positive, edges are invalid, or no
|
|
1370
|
+
* fillet engine can produce a valid changed solid.
|
|
1370
1371
|
* @param {number} solid
|
|
1371
1372
|
* @param {Uint32Array} edge_handles
|
|
1372
1373
|
* @param {number} radius
|
|
@@ -5281,13 +5282,13 @@ export function __wbg___wbindgen_debug_string_a57024b9c6e4a48b(arg0, arg1) {
|
|
|
5281
5282
|
export function __wbg___wbindgen_throw_bb96b2010945f0bc(arg0, arg1) {
|
|
5282
5283
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
5283
5284
|
}
|
|
5284
|
-
export function
|
|
5285
|
+
export function __wbg_error_db88a48f074618a5(arg0, arg1) {
|
|
5285
5286
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
5286
5287
|
}
|
|
5287
|
-
export function
|
|
5288
|
+
export function __wbg_log_c3ded3458a17e64c(arg0, arg1) {
|
|
5288
5289
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
5289
5290
|
}
|
|
5290
|
-
export function
|
|
5291
|
+
export function __wbg_warn_19da4add9c53c708(arg0, arg1) {
|
|
5291
5292
|
console.warn(getStringFromWasm0(arg0, arg1));
|
|
5292
5293
|
}
|
|
5293
5294
|
export function __wbindgen_cast_0000000000000001(arg0, arg1) {
|
package/brepkit_wasm_bg.wasm
CHANGED
|
Binary file
|
package/brepkit_wasm_node.cjs
CHANGED
|
@@ -1368,7 +1368,8 @@ class BrepKernel {
|
|
|
1368
1368
|
*
|
|
1369
1369
|
* # Errors
|
|
1370
1370
|
*
|
|
1371
|
-
* Returns an error if radius is non-positive
|
|
1371
|
+
* Returns an error if radius is non-positive, edges are invalid, or no
|
|
1372
|
+
* fillet engine can produce a valid changed solid.
|
|
1372
1373
|
* @param {number} solid
|
|
1373
1374
|
* @param {Uint32Array} edge_handles
|
|
1374
1375
|
* @param {number} radius
|
|
@@ -5295,13 +5296,13 @@ function __wbg_get_imports() {
|
|
|
5295
5296
|
__wbg___wbindgen_throw_bb96b2010945f0bc: function(arg0, arg1) {
|
|
5296
5297
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
5297
5298
|
},
|
|
5298
|
-
|
|
5299
|
+
__wbg_error_db88a48f074618a5: function(arg0, arg1) {
|
|
5299
5300
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
5300
5301
|
},
|
|
5301
|
-
|
|
5302
|
+
__wbg_log_c3ded3458a17e64c: function(arg0, arg1) {
|
|
5302
5303
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
5303
5304
|
},
|
|
5304
|
-
|
|
5305
|
+
__wbg_warn_19da4add9c53c708: function(arg0, arg1) {
|
|
5305
5306
|
console.warn(getStringFromWasm0(arg0, arg1));
|
|
5306
5307
|
},
|
|
5307
5308
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
package/package.json
CHANGED