bugfix "connected lines" for gyroid & 3Dhoney

This commit is contained in:
supermerill 2019-03-08 18:29:51 +01:00 committed by Yuri D'Elia
parent 19df45c39d
commit b6936a46e3
4 changed files with 111 additions and 25 deletions

View file

@ -190,7 +190,7 @@ void Fill3DHoneycomb::_fill_surface_single(
if (params.dont_connect) {
polylines_out.insert(polylines_out.end(), polylines_chained.begin(), polylines_chained.end());
} else {
this->connect_infill(polylines_chained, expolygon, polylines_out);
this->connect_infill(polylines_chained, expolygon, polylines_out, params);
}
}