Fuse all shapes in a single boolean operation.
With strategy: 'native' (default), uses N-way BRepAlgoAPI_BuilderAlgo. With strategy: 'pairwise', uses recursive divide-and-conquer.
strategy: 'native'
strategy: 'pairwise'
Array of 3D shapes to fuse (at least one required).
Boolean operation options.
Ok with the fused shape, or Err if the array is empty or the result is not 3D.
const result = fuseAll([box1, box2, box3], { simplify: true }); Copy
const result = fuseAll([box1, box2, box3], { simplify: true });
Fuse all shapes in a single boolean operation.
With
strategy: 'native'(default), uses N-way BRepAlgoAPI_BuilderAlgo. Withstrategy: 'pairwise', uses recursive divide-and-conquer.