Revise SimulateExtrusion == false to better depict toolpaths

- Issue MatterHackers/MCCentral#3469
GCode extrusion option having no impact
This commit is contained in:
John Lewin 2018-06-05 18:12:35 -07:00
parent 0200f87c21
commit 761c833668

View file

@ -71,6 +71,13 @@ namespace MatterHackers.GCodeVisualizer
width = area / layerHeight;
}
}
else
{
// TODO: adjust line render to reduce the height of the line as well
//
// Force line width to 0.1 when SimulateExtrusion is disabled, to produce a visualization of the toolpath rather than the extrudate
width = 0.1;
}
return width;
}