Fixes of two crashes in paint-on supports

This commit is contained in:
Lukas Matena 2020-08-11 12:15:44 +02:00
parent 12f43736bd
commit fd93d9768d
2 changed files with 5 additions and 3 deletions

View file

@ -2823,8 +2823,9 @@ void PrintObject::project_and_append_custom_supports(
// Now append the collected polygons to respective layers.
for (auto& trg : projections_of_triangles) {
int layer_id = trg.first_layer_id;
for (const LightPolygon& poly : trg.polygons) {
if (layer_id >= int(expolys.size()))
break; // part of triangle could be projected above top layer
expolys[layer_id].emplace_back(std::move(poly.pts));
++layer_id;
}