refactoring

This commit is contained in:
Lars Brubaker 2023-10-31 15:13:04 -07:00
parent d1beaf9490
commit 9f6b6133ac
13 changed files with 40 additions and 44 deletions

View file

@ -167,8 +167,8 @@ namespace MatterHackers.GCodeVisualizer
LineJoin = LineJoin.Round
};
pathStorage.Add(start.X, start.Y, ShapePath.FlagsAndCommand.MoveTo);
pathStorage.Add(end.X, end.Y, ShapePath.FlagsAndCommand.LineTo);
pathStorage.Add(start.X, start.Y, FlagsAndCommand.MoveTo);
pathStorage.Add(end.X, end.Y, FlagsAndCommand.LineTo);
graphics2D.Render(stroke, extrusionColor);
}