brepkit-wasm 2.102.8 → 2.102.10

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
@@ -1844,6 +1844,10 @@ export class BrepKernel {
1844
1844
  * Returns a JSON string containing `{ positions, normals, indices, faceOffsets }`.
1845
1845
  * `faceOffsets` is an array where `faceOffsets[i]` is the start index into
1846
1846
  * `indices` for face `i`, and the last element is `indices.length`.
1847
+ *
1848
+ * Uses the watertight shared-edge-pool tessellation: adjacent faces share
1849
+ * identical boundary vertices, so the exported mesh has no T-junctions
1850
+ * regardless of how the solid was constructed (booleans included).
1847
1851
  */
1848
1852
  tessellateSolidGrouped(solid: number, deflection: number, angular_tolerance?: number | null): any;
1849
1853
  /**
@@ -4125,6 +4125,10 @@ export class BrepKernel {
4125
4125
  * Returns a JSON string containing `{ positions, normals, indices, faceOffsets }`.
4126
4126
  * `faceOffsets` is an array where `faceOffsets[i]` is the start index into
4127
4127
  * `indices` for face `i`, and the last element is `indices.length`.
4128
+ *
4129
+ * Uses the watertight shared-edge-pool tessellation: adjacent faces share
4130
+ * identical boundary vertices, so the exported mesh has no T-junctions
4131
+ * regardless of how the solid was constructed (booleans included).
4128
4132
  * @param {number} solid
4129
4133
  * @param {number} deflection
4130
4134
  * @param {number | null} [angular_tolerance]
@@ -4778,13 +4782,13 @@ export function __wbg___wbindgen_debug_string_0accd80f45e5faa2(arg0, arg1) {
4778
4782
  export function __wbg___wbindgen_throw_1506f2235d1bdba0(arg0, arg1) {
4779
4783
  throw new Error(getStringFromWasm0(arg0, arg1));
4780
4784
  }
4781
- export function __wbg_error_7229af04c83122df(arg0, arg1) {
4785
+ export function __wbg_error_17fc9592ecadbad2(arg0, arg1) {
4782
4786
  console.error(getStringFromWasm0(arg0, arg1));
4783
4787
  }
4784
- export function __wbg_log_dc93584b29b7ddf6(arg0, arg1) {
4788
+ export function __wbg_log_b178ca2d4367e643(arg0, arg1) {
4785
4789
  console.log(getStringFromWasm0(arg0, arg1));
4786
4790
  }
4787
- export function __wbg_warn_68f96b5e9deba287(arg0, arg1) {
4791
+ export function __wbg_warn_2e4fc8fffff6d324(arg0, arg1) {
4788
4792
  console.warn(getStringFromWasm0(arg0, arg1));
4789
4793
  }
4790
4794
  export function __wbindgen_cast_0000000000000001(arg0, arg1) {
Binary file
@@ -4127,6 +4127,10 @@ class BrepKernel {
4127
4127
  * Returns a JSON string containing `{ positions, normals, indices, faceOffsets }`.
4128
4128
  * `faceOffsets` is an array where `faceOffsets[i]` is the start index into
4129
4129
  * `indices` for face `i`, and the last element is `indices.length`.
4130
+ *
4131
+ * Uses the watertight shared-edge-pool tessellation: adjacent faces share
4132
+ * identical boundary vertices, so the exported mesh has no T-junctions
4133
+ * regardless of how the solid was constructed (booleans included).
4130
4134
  * @param {number} solid
4131
4135
  * @param {number} deflection
4132
4136
  * @param {number | null} [angular_tolerance]
@@ -4789,13 +4793,13 @@ function __wbg_get_imports() {
4789
4793
  __wbg___wbindgen_throw_1506f2235d1bdba0: function(arg0, arg1) {
4790
4794
  throw new Error(getStringFromWasm0(arg0, arg1));
4791
4795
  },
4792
- __wbg_error_7229af04c83122df: function(arg0, arg1) {
4796
+ __wbg_error_17fc9592ecadbad2: function(arg0, arg1) {
4793
4797
  console.error(getStringFromWasm0(arg0, arg1));
4794
4798
  },
4795
- __wbg_log_dc93584b29b7ddf6: function(arg0, arg1) {
4799
+ __wbg_log_b178ca2d4367e643: function(arg0, arg1) {
4796
4800
  console.log(getStringFromWasm0(arg0, arg1));
4797
4801
  },
4798
- __wbg_warn_68f96b5e9deba287: function(arg0, arg1) {
4802
+ __wbg_warn_2e4fc8fffff6d324: function(arg0, arg1) {
4799
4803
  console.warn(getStringFromWasm0(arg0, arg1));
4800
4804
  },
4801
4805
  __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.102.8",
5
+ "version": "2.102.10",
6
6
  "license": "MIT OR Apache-2.0",
7
7
  "repository": {
8
8
  "type": "git",