Trying to understand more about re-slice failure
This commit is contained in:
parent
473cfffa51
commit
e6495653b6
2 changed files with 11 additions and 0 deletions
|
|
@ -72,6 +72,14 @@ namespace MatterHackers.MatterControl.Tests.Automation
|
|||
double lastAbsoluteEPostion = 0;
|
||||
double largestAbsoluteEPosition = 0;
|
||||
double largestRetraction = 0;
|
||||
emulator.RecievedInstruction += (e, s) =>
|
||||
{
|
||||
if(s.Contains("G92"))
|
||||
{
|
||||
int a = 0;
|
||||
}
|
||||
};
|
||||
|
||||
emulator.EPositionChanged += (e, s) =>
|
||||
{
|
||||
largestAbsoluteEPosition = Math.Max(largestAbsoluteEPosition, emulator.CurrentExtruder.AbsoluteEPosition);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue