More GCode export fixes
More GCode export tests
This commit is contained in:
parent
6f4efc84ce
commit
c789a3fe0a
8 changed files with 193 additions and 28 deletions
|
|
@ -68,7 +68,10 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io
|
|||
PrinterMove moveToSend = currentMove;
|
||||
moveToSend.feedRate *= FeedRateRatio;
|
||||
|
||||
lineToSend = CreateMovementLine(moveToSend, this.lastDestination);
|
||||
if (moveToSend.HaveAnyPosition)
|
||||
{
|
||||
lineToSend = CreateMovementLine(moveToSend, this.lastDestination);
|
||||
}
|
||||
this.lastDestination = currentMove;
|
||||
return lineToSend;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue