mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-10 10:25:36 +01:00
BREP boolean point on point corner case(when cutting sketch)
This commit is contained in:
parent
1ac7090d91
commit
a52c57ea4b
1 changed files with 3 additions and 2 deletions
|
|
@ -54,11 +54,12 @@ export function BooleanAlgorithm( shell1, shell2, type ) {
|
|||
__DEBUG__.Clear();
|
||||
|
||||
let facesData = [];
|
||||
|
||||
|
||||
mergeVertices(shell1, shell2);
|
||||
|
||||
initSolveData(shell1, facesData);
|
||||
initSolveData(shell2, facesData);
|
||||
|
||||
mergeVertices(shell1, shell2);
|
||||
markOverlappingFaces(shell1, shell2);
|
||||
intersectFaces(shell1, shell2, type !== TYPE.UNION);
|
||||
mergeOverlappingFaces(shell1, shell2);
|
||||
|
|
|
|||
Loading…
Reference in a new issue