create cradle around small parts, break tiny connections in the model graph, fix PETG support

This commit is contained in:
PavelMikus 2022-09-07 17:11:58 +02:00
parent 8a1a31992a
commit a6a723928c
3 changed files with 44 additions and 46 deletions
src/libslic3r

View file

@ -435,7 +435,7 @@ void PrintObject::generate_support_spots()
Vec3f point = Vec3f(inv_transform.cast<float>() * support_point.position);
Vec3f origin = Vec3f(
inv_transform.cast<float>() * Vec3f(support_point.position.x(), support_point.position.y(), 0.0f));
selector.enforce_spot(point, origin, 1.5f);
selector.enforce_spot(point, origin, support_point.spot_radius);
}
model_volume->supported_facets.set(selector.selector);