fix wait time calculation
This commit is contained in:
parent
05a0eab829
commit
181b4447ce
|
@ -63,7 +63,7 @@ namespace PCUT.Extensions
|
|||
{
|
||||
var lengthX = Math.Abs(maxX - moveCommand.X);
|
||||
builder.AddHpglMove(moveCommand.X, moveCommand.Y, ref maxX);
|
||||
length += (lengthX + (heightUnit / UnitLength)) * 0.75;
|
||||
length += (lengthX + heightUnit) * 0.75;
|
||||
break;
|
||||
}
|
||||
case LineCommand lineCommand:
|
||||
|
|
Loading…
Reference in New Issue