hardcode overhang angles, remove volumetric filtering (does not work correctly)

This commit is contained in:
PavelMikus 2022-08-16 16:14:22 +02:00
parent 6114b04594
commit 3773de2957
4 changed files with 23 additions and 14 deletions
src/libslic3r

View file

@ -423,7 +423,7 @@ void PrintObject::generate_support_spots()
std::all_of(this->model_object()->volumes.begin(), this->model_object()->volumes.end(),
[](const ModelVolume* mv){return mv->supported_facets.empty();})
) {
SupportSpotsGenerator::Params params{90.001f - this->m_config.support_material_threshold, this->print()->m_config.filament_type.values};
SupportSpotsGenerator::Params params{this->print()->m_config.filament_type.values};
SupportSpotsGenerator::Issues issues = SupportSpotsGenerator::full_search(this, params);
auto obj_transform = this->trafo_centered();
for (ModelVolume *model_volume : this->model_object()->volumes) {