Fix failing test for hollowing

This commit is contained in:
tamasmeszaros 2022-04-07 16:30:05 +02:00
parent 23db6f3071
commit 39a47e91f7

View file

@ -67,7 +67,7 @@ static InteriorPtr generate_interior_verbose(const TriangleMesh & mesh,
{
double offset = voxel_scale * min_thickness;
double D = voxel_scale * closing_dist;
float in_range = /*1.1f * */float(offset + D);
float in_range = 1.1f * float(offset + D);
if (ctl.stopcondition()) return {};
else ctl.statuscb(0, L("Hollowing"));