mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 21:05:22 +01:00
debug support for face merging
This commit is contained in:
parent
a7050e47a2
commit
3e4bdc6534
1 changed files with 1 additions and 0 deletions
|
|
@ -286,6 +286,7 @@ function findOverlappingFaces(shell1, shell2) {
|
|||
|
||||
function mergeOverlappingFaces(shellA, shellB, opType) {
|
||||
let groups = findOverlappingFaces(shellA, shellB);
|
||||
BREP_DEBUG.setOverlappingFaces(groups);
|
||||
let mergedFaces = [];
|
||||
for (let [groupA, groupB] of groups) {
|
||||
let faceMergeInfo = mergeFaces(Array.from(groupA), Array.from(groupB), opType);
|
||||
|
|
|
|||
Loading…
Reference in a new issue