brepkit-wasm 2.111.1 → 2.112.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 -3
- package/brepkit_wasm_bg.js +6 -6
- package/brepkit_wasm_bg.wasm +0 -0
- package/brepkit_wasm_node.cjs +6 -6
- package/package.json +1 -1
package/brepkit_wasm.d.ts
CHANGED
|
@@ -262,9 +262,9 @@ export class BrepKernel {
|
|
|
262
262
|
* already in the model are left untouched. Returns the number of entities
|
|
263
263
|
* converted.
|
|
264
264
|
*
|
|
265
|
-
*
|
|
266
|
-
* dropped during conversion — callers that depend on
|
|
267
|
-
* recompute them afterwards.
|
|
265
|
+
* Converts every analytic surface and curve to a NURBS representation.
|
|
266
|
+
* Stored pcurves are dropped during conversion — callers that depend on
|
|
267
|
+
* pcurves should recompute them afterwards.
|
|
268
268
|
*
|
|
269
269
|
* # Errors
|
|
270
270
|
*
|
package/brepkit_wasm_bg.js
CHANGED
|
@@ -561,9 +561,9 @@ export class BrepKernel {
|
|
|
561
561
|
* already in the model are left untouched. Returns the number of entities
|
|
562
562
|
* converted.
|
|
563
563
|
*
|
|
564
|
-
*
|
|
565
|
-
* dropped during conversion — callers that depend on
|
|
566
|
-
* recompute them afterwards.
|
|
564
|
+
* Converts every analytic surface and curve to a NURBS representation.
|
|
565
|
+
* Stored pcurves are dropped during conversion — callers that depend on
|
|
566
|
+
* pcurves should recompute them afterwards.
|
|
567
567
|
*
|
|
568
568
|
* # Errors
|
|
569
569
|
*
|
|
@@ -5062,13 +5062,13 @@ export function __wbg___wbindgen_debug_string_0accd80f45e5faa2(arg0, arg1) {
|
|
|
5062
5062
|
export function __wbg___wbindgen_throw_1506f2235d1bdba0(arg0, arg1) {
|
|
5063
5063
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
5064
5064
|
}
|
|
5065
|
-
export function
|
|
5065
|
+
export function __wbg_error_ac73a71e7aadc89c(arg0, arg1) {
|
|
5066
5066
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
5067
5067
|
}
|
|
5068
|
-
export function
|
|
5068
|
+
export function __wbg_log_284b1a1101792a60(arg0, arg1) {
|
|
5069
5069
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
5070
5070
|
}
|
|
5071
|
-
export function
|
|
5071
|
+
export function __wbg_warn_4504c13a5014fbb5(arg0, arg1) {
|
|
5072
5072
|
console.warn(getStringFromWasm0(arg0, arg1));
|
|
5073
5073
|
}
|
|
5074
5074
|
export function __wbindgen_cast_0000000000000001(arg0, arg1) {
|
package/brepkit_wasm_bg.wasm
CHANGED
|
Binary file
|
package/brepkit_wasm_node.cjs
CHANGED
|
@@ -563,9 +563,9 @@ class BrepKernel {
|
|
|
563
563
|
* already in the model are left untouched. Returns the number of entities
|
|
564
564
|
* converted.
|
|
565
565
|
*
|
|
566
|
-
*
|
|
567
|
-
* dropped during conversion — callers that depend on
|
|
568
|
-
* recompute them afterwards.
|
|
566
|
+
* Converts every analytic surface and curve to a NURBS representation.
|
|
567
|
+
* Stored pcurves are dropped during conversion — callers that depend on
|
|
568
|
+
* pcurves should recompute them afterwards.
|
|
569
569
|
*
|
|
570
570
|
* # Errors
|
|
571
571
|
*
|
|
@@ -5074,13 +5074,13 @@ function __wbg_get_imports() {
|
|
|
5074
5074
|
__wbg___wbindgen_throw_1506f2235d1bdba0: function(arg0, arg1) {
|
|
5075
5075
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
5076
5076
|
},
|
|
5077
|
-
|
|
5077
|
+
__wbg_error_ac73a71e7aadc89c: function(arg0, arg1) {
|
|
5078
5078
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
5079
5079
|
},
|
|
5080
|
-
|
|
5080
|
+
__wbg_log_284b1a1101792a60: function(arg0, arg1) {
|
|
5081
5081
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
5082
5082
|
},
|
|
5083
|
-
|
|
5083
|
+
__wbg_warn_4504c13a5014fbb5: function(arg0, arg1) {
|
|
5084
5084
|
console.warn(getStringFromWasm0(arg0, arg1));
|
|
5085
5085
|
},
|
|
5086
5086
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
package/package.json
CHANGED