Modified IntertwineAsLines::fillPoints to draw the contour too (so the shape of the final polygon is more like the previewed-contour).

This commit is contained in:
David Capello 2010-04-06 08:57:03 -03:00
parent 055af25600
commit 2c7b527efb

View File

@ -71,6 +71,10 @@ public:
return;
}
// Contour
joinPoints(loop, points);
// Fill content
algo_polygon(points.size(), (const int*)&points[0], loop, (AlgoHLine)doPointshapeHline);
}
};