brepkit-wasm 2.18.2 → 2.18.3
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 -2
- package/brepkit_wasm_bg.js +2 -2
- package/brepkit_wasm_bg.wasm +0 -0
- package/brepkit_wasm_node.cjs +2 -2
- package/package.json +1 -1
package/brepkit_wasm.d.ts
CHANGED
|
@@ -120,7 +120,7 @@ export class BrepKernel {
|
|
|
120
120
|
*/
|
|
121
121
|
assemblyNew(name: string): number;
|
|
122
122
|
/**
|
|
123
|
-
* Boolean operation using the
|
|
123
|
+
* Boolean operation using the parameter-space pipeline (v2).
|
|
124
124
|
*
|
|
125
125
|
* Supports all surface types (plane, cylinder, cone, sphere, torus, NURBS).
|
|
126
126
|
* Preserves analytic surface types on output faces.
|
|
@@ -1136,7 +1136,7 @@ export class BrepKernel {
|
|
|
1136
1136
|
* Create a solid from a set of faces by sewing them together.
|
|
1137
1137
|
*
|
|
1138
1138
|
* Alias for `sewFaces` with a default tolerance. This is the equivalent
|
|
1139
|
-
* of
|
|
1139
|
+
* of sewing faces into a closed shell and building a solid.
|
|
1140
1140
|
*/
|
|
1141
1141
|
makeSolid(face_handles: Uint32Array): number;
|
|
1142
1142
|
/**
|
package/brepkit_wasm_bg.js
CHANGED
|
@@ -217,7 +217,7 @@ export class BrepKernel {
|
|
|
217
217
|
return ret >>> 0;
|
|
218
218
|
}
|
|
219
219
|
/**
|
|
220
|
-
* Boolean operation using the
|
|
220
|
+
* Boolean operation using the parameter-space pipeline (v2).
|
|
221
221
|
*
|
|
222
222
|
* Supports all surface types (plane, cylinder, cone, sphere, torus, NURBS).
|
|
223
223
|
* Preserves analytic surface types on output faces.
|
|
@@ -2540,7 +2540,7 @@ export class BrepKernel {
|
|
|
2540
2540
|
* Create a solid from a set of faces by sewing them together.
|
|
2541
2541
|
*
|
|
2542
2542
|
* Alias for `sewFaces` with a default tolerance. This is the equivalent
|
|
2543
|
-
* of
|
|
2543
|
+
* of sewing faces into a closed shell and building a solid.
|
|
2544
2544
|
* @param {Uint32Array} face_handles
|
|
2545
2545
|
* @returns {number}
|
|
2546
2546
|
*/
|
package/brepkit_wasm_bg.wasm
CHANGED
|
Binary file
|
package/brepkit_wasm_node.cjs
CHANGED
|
@@ -219,7 +219,7 @@ class BrepKernel {
|
|
|
219
219
|
return ret >>> 0;
|
|
220
220
|
}
|
|
221
221
|
/**
|
|
222
|
-
* Boolean operation using the
|
|
222
|
+
* Boolean operation using the parameter-space pipeline (v2).
|
|
223
223
|
*
|
|
224
224
|
* Supports all surface types (plane, cylinder, cone, sphere, torus, NURBS).
|
|
225
225
|
* Preserves analytic surface types on output faces.
|
|
@@ -2542,7 +2542,7 @@ class BrepKernel {
|
|
|
2542
2542
|
* Create a solid from a set of faces by sewing them together.
|
|
2543
2543
|
*
|
|
2544
2544
|
* Alias for `sewFaces` with a default tolerance. This is the equivalent
|
|
2545
|
-
* of
|
|
2545
|
+
* of sewing faces into a closed shell and building a solid.
|
|
2546
2546
|
* @param {Uint32Array} face_handles
|
|
2547
2547
|
* @returns {number}
|
|
2548
2548
|
*/
|
package/package.json
CHANGED