There seems to be an error in converting the profiles. The wall size is only one line width, generating too thin walls and lots of oozing.
The problem seems to be that engineToProfile.py does not use the insetCount parameter. The value is saved to the lineCount variable, but not used to calculate wall_thickness.
Ok, sounds right to me. The devel branch now used the engineToProfile.py with you fix and changing the fill settings in the profile editor will also adjust the wall_thickness parameter.
There seems to be an error in converting the profiles. The wall size is only one line width, generating too thin walls and lots of oozing.
The problem seems to be that
engineToProfile.py
does not use theinsetCount
parameter. The value is saved to thelineCount
variable, but not used to calculatewall_thickness
.I'm not sure, but maybe, changing
output.write("wall_thickness = " + str(layer0extrusionWidth / 1000.0) + '\n')
to
output.write("wall_thickness = " + str(extrusionWidth * lineCount / 1000.0) + '\n')
could solve the problem.