slip overlapping surfaces

This commit is contained in:
Val Erastov 2017-01-17 21:19:51 -08:00
parent 8f3c07f952
commit a820a68639

View file

@ -259,6 +259,10 @@ function intersectFaces(shell1, shell2, inverseCrossEdgeDirection) {
const face1 = shell1.faces[i];
const face2 = shell2.faces[j];
if (face1.surface.equals(face2.surface, TOLERANCE)) {
continue;
}
const curve = face1.surface.intersect(face2.surface);
const nodes = [];