Filtering invalid geometries as per: SPE-337

This commit is contained in:
tamasmeszaros 2018-07-03 14:58:49 +02:00
parent 99f2d40b53
commit c73f702922

View File

@ -436,8 +436,8 @@ bool arrange(Model &model, coordf_t dist, const Slic3r::BoundingBoxf* bb,
biggest = &item;
}
}
/*if(it.second.vertexCount() > 3)*/
shapes.push_back(std::ref(it.second));
if(it.second.vertexCount() > 3) shapes.push_back(std::ref(it.second));
});
Box bin;