Implemented calculation of elastic section modulus

This commit is contained in:
PavelMikus 2022-07-22 16:51:44 +02:00
parent ed1c4d99a7
commit 9ff0d49fae
3 changed files with 60 additions and 62 deletions
src/libslic3r

View file

@ -434,7 +434,7 @@ void PrintObject::generate_support_spots()
Vec3f point = Vec3f(inv_transform * support_point.position);
Vec3f origin = Vec3f(
inv_transform * Vec3f(support_point.position.x(), support_point.position.y(), 0.0f));
selector.enforce_spot(point, origin, 0.3f);
selector.enforce_spot(point, origin, 0.6f);
}
model_volume->supported_facets.set(selector.selector);