okgeometry-api 0.5.8 → 0.5.9
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/dist/wasm-base64.d.ts +1 -1
- package/dist/wasm-base64.d.ts.map +1 -1
- package/dist/wasm-base64.js +1 -1
- package/dist/wasm-base64.js.map +1 -1
- package/package.json +3 -1
- package/src/wasm-base64.ts +1 -1
- package/wasm/okgeometrycore.d.ts +7 -2
- package/wasm/okgeometrycore.js +7 -2
- package/wasm/okgeometrycore_bg.wasm +0 -0
package/wasm/okgeometrycore.d.ts
CHANGED
|
@@ -190,10 +190,11 @@ export function mesh_boolean_operation_debug(vertex_count_a: number, buffer_a: F
|
|
|
190
190
|
* the result mesh buffer.
|
|
191
191
|
*
|
|
192
192
|
* Output format:
|
|
193
|
-
* [profile_len(=
|
|
193
|
+
* [profile_len(=53), broadphase_ms, segments_ms, split_ms, classify_ms,
|
|
194
194
|
* classify_seed_ms, classify_strict_ms, classify_open_component_ms,
|
|
195
195
|
* extract_ms, extract_primary_ms, extract_fallback_ms,
|
|
196
|
-
* cleanup_ms, finalize_ms,
|
|
196
|
+
* cleanup_ms, finalize_ms, finalize_cap_ms, finalize_recap_ms, finalize_stitch_ms,
|
|
197
|
+
* pair_accepted, pair_rejected, pair_degenerate,
|
|
197
198
|
* core_passes, core_total_ms, conservative_runs, conservative_ms, nudge_runs, nudge_ms,
|
|
198
199
|
* recompose_runs, recompose_ms, repair_runs, repair_ms,
|
|
199
200
|
* repair_loops, repair_loops_capped, repair_loop_vertices, repair_loop_max_vertices,
|
|
@@ -204,6 +205,10 @@ export function mesh_boolean_operation_debug(vertex_count_a: number, buffer_a: F
|
|
|
204
205
|
* arrangement_adj_non_manifold_edges_total, arrangement_adj_non_manifold_limit_total,
|
|
205
206
|
* arrangement_adj_non_manifold_tolerated_attempts,
|
|
206
207
|
* arrangement_adj_fallback_non_manifold_excess_total,
|
|
208
|
+
* subtraction_ultra_cases, subtraction_ultra_component_fallback_runs,
|
|
209
|
+
* subtraction_ultra_open_bounds_total, subtraction_ultra_open_bounds_max,
|
|
210
|
+
* subtraction_ultra_best_boundary_total, subtraction_ultra_best_non_manifold_total,
|
|
211
|
+
* subtraction_ultra_scoped_faces_total, subtraction_ultra_scoped_faces_max,
|
|
207
212
|
* mesh_buffer...]
|
|
208
213
|
*/
|
|
209
214
|
export function mesh_boolean_operation_profiled(vertex_count_a: number, buffer_a: Float64Array, vertex_count_b: number, buffer_b: Float64Array, operation: string): Float64Array;
|
package/wasm/okgeometrycore.js
CHANGED
|
@@ -539,10 +539,11 @@ export function mesh_boolean_operation_debug(vertex_count_a, buffer_a, vertex_co
|
|
|
539
539
|
* the result mesh buffer.
|
|
540
540
|
*
|
|
541
541
|
* Output format:
|
|
542
|
-
* [profile_len(=
|
|
542
|
+
* [profile_len(=53), broadphase_ms, segments_ms, split_ms, classify_ms,
|
|
543
543
|
* classify_seed_ms, classify_strict_ms, classify_open_component_ms,
|
|
544
544
|
* extract_ms, extract_primary_ms, extract_fallback_ms,
|
|
545
|
-
* cleanup_ms, finalize_ms,
|
|
545
|
+
* cleanup_ms, finalize_ms, finalize_cap_ms, finalize_recap_ms, finalize_stitch_ms,
|
|
546
|
+
* pair_accepted, pair_rejected, pair_degenerate,
|
|
546
547
|
* core_passes, core_total_ms, conservative_runs, conservative_ms, nudge_runs, nudge_ms,
|
|
547
548
|
* recompose_runs, recompose_ms, repair_runs, repair_ms,
|
|
548
549
|
* repair_loops, repair_loops_capped, repair_loop_vertices, repair_loop_max_vertices,
|
|
@@ -553,6 +554,10 @@ export function mesh_boolean_operation_debug(vertex_count_a, buffer_a, vertex_co
|
|
|
553
554
|
* arrangement_adj_non_manifold_edges_total, arrangement_adj_non_manifold_limit_total,
|
|
554
555
|
* arrangement_adj_non_manifold_tolerated_attempts,
|
|
555
556
|
* arrangement_adj_fallback_non_manifold_excess_total,
|
|
557
|
+
* subtraction_ultra_cases, subtraction_ultra_component_fallback_runs,
|
|
558
|
+
* subtraction_ultra_open_bounds_total, subtraction_ultra_open_bounds_max,
|
|
559
|
+
* subtraction_ultra_best_boundary_total, subtraction_ultra_best_non_manifold_total,
|
|
560
|
+
* subtraction_ultra_scoped_faces_total, subtraction_ultra_scoped_faces_max,
|
|
556
561
|
* mesh_buffer...]
|
|
557
562
|
* @param {number} vertex_count_a
|
|
558
563
|
* @param {Float64Array} buffer_a
|
|
Binary file
|