Closed 5axes closed 1 year ago
Do you see any kind of Flag/unique property in the gcode, e.g. "%" in that line, that would allow to decide whether it is percent?
Yes It's not a big issue to solved .. You can just test if % is in the parameter :
Ie in the Gcode :
; external_perimeter_extrusion_width = 105%
But in this case you need to recalculate the value by getting the nozzle_diameter and calculating the value.
; nozzle_diameter = 0.4
Thank you for pointing out this problem and solving it! Functionality is added now :)
If the parameter perimeter_extrusion_width is define as percentage and not as millimeter the code gCodeSettingDict.get("perimeter_extrusion_width") doesn't return the right value.