Working on re-slice test

This commit is contained in:
Lars Brubaker 2018-10-08 09:44:06 -07:00
parent acbc67be9d
commit d74490747b
4 changed files with 40 additions and 6 deletions

View file

@ -113,7 +113,18 @@ namespace MatterHackers.PrinterEmulator
}
}
#region EPositions data
/// <summary>
/// The absolute eposition from the time the emulator was started.
/// never resets with G92
/// </summary>
public double AbsoluteEPosition { get; set; } = 0;
public double LastEPosition = 0;
/// <summary>
/// The current e-position the hardware believes it is at
/// </summary>
public double EPosition { get; set; }
#endregion
public double HeatUpTimeInSeconds
{