From 2c7b527efbec8ef96bc64fe1e99451a19b5e3e60 Mon Sep 17 00:00:00 2001 From: David Capello Date: Tue, 6 Apr 2010 08:57:03 -0300 Subject: [PATCH] Modified IntertwineAsLines::fillPoints to draw the contour too (so the shape of the final polygon is more like the previewed-contour). --- src/tools/intertwiners.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tools/intertwiners.h b/src/tools/intertwiners.h index f0f0212e2..f8ae38446 100644 --- a/src/tools/intertwiners.h +++ b/src/tools/intertwiners.h @@ -71,6 +71,10 @@ public: return; } + // Contour + joinPoints(loop, points); + + // Fill content algo_polygon(points.size(), (const int*)&points[0], loop, (AlgoHLine)doPointshapeHline); } };