Skip to content

Commit c1905c4

Browse files
committed
fix tesselation
1 parent 1564f24 commit c1905c4

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

modules/geom/impl/curve/curve-tess.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@ export function curveTessParams(curve, min, max, tessTol, scale) {
1919
splits.push(max);
2020

2121
function refine(u1, u2, step) {
22-
if (step < u2 - u1) {
23-
const mid = u1 + (u2 - u1) * 0.5;
22+
const uDist = u2 - u1;
23+
if (uDist < 1e-3) {
24+
return
25+
}
26+
if (step < uDist) {
27+
const mid = u1 + uDist * 0.5;
2428
refine(u1, mid, step);
2529
out.push(mid);
2630
refine(mid, u2, curveStep(curve, mid, tessTol, scale));

web/app/cad/sketch/sketchModel.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -369,10 +369,10 @@ export class Contour {
369369
return cc;
370370
}
371371

372-
tessellate(resolution) {
372+
tessellate() {
373373
const tessellation = [];
374374
for (const segment of this.segments) {
375-
const segmentTessellation = segment.tessellate(resolution);
375+
const segmentTessellation = segment.tessellate(segment.massiveness() * 0.1);
376376
//skip last one because it's guaranteed to be closed
377377
for (let i = 0; i < segmentTessellation.length - 1; ++i) {
378378
tessellation.push(segmentTessellation[i]);
@@ -382,7 +382,7 @@ export class Contour {
382382
}
383383

384384
isCCW() {
385-
return isCCW(this.tessellate(10));
385+
return isCCW(this.tessellate());
386386
}
387387

388388
reverse() {

0 commit comments

Comments
 (0)