mirror of
https://github.com/xibyte/jsketcher
synced 2026-02-16 12:24:22 +01:00
fix two arcs loop bug
This commit is contained in:
parent
5ae4aba735
commit
6dc0c7e2be
1 changed files with 1 additions and 2 deletions
|
|
@ -60,8 +60,7 @@ export function evolveFace(originFace, loops) {
|
|||
function getNestedLoops(face, brepLoops) {
|
||||
function NestedLoop(loop) {
|
||||
this.loop = loop;
|
||||
//FIXME
|
||||
this.workingPolygon = loop.asPolygon().map(p => face.surface.workingPoint(p));
|
||||
this.workingPolygon = loop.tess().map(p => face.surface.workingPoint(p));
|
||||
this.inverted = !isCCW(this.workingPolygon);
|
||||
this.pip = PIP(this.workingPolygon);
|
||||
this.nesting = [];
|
||||
|
|
|
|||
Loading…
Reference in a new issue