Getting image path generation and extrude working with rebuild

This commit is contained in:
Lars Brubaker 2018-06-06 15:46:30 -07:00
parent ae6864a6da
commit 46dc1210be
17 changed files with 787 additions and 20 deletions

View file

@ -68,7 +68,7 @@ namespace MatterHackers.GCodeVisualizer
if (moveLength > .1) // we get truncation errors from the slice engine when the length is very small, so don't do them
{
double area = extrusionVolumeMm3 / moveLength;
width = area / layerHeight;
width = area / layerHeight * 2;
}
}
else