Make it possible to have the print leveling go negative

Took out the 2 point leveling solution
MatterHackers/MatterControl#804
This commit is contained in:
Lars Brubaker 2016-10-11 14:56:36 -07:00
parent 426c0ede6a
commit 3bb439d198
16 changed files with 212 additions and 610 deletions

View file

@ -202,10 +202,6 @@ namespace MatterHackers.MatterControl.PrintQueue
switch (levelingData.CurrentPrinterLevelingSystem)
{
case PrintLevelingData.LevelingSystem.Probe2Points:
instruction.Line = LevelWizard2Point.ApplyLeveling(instruction.Line, currentDestination, instruction.movementType);
break;
case PrintLevelingData.LevelingSystem.Probe3Points:
instruction.Line = LevelWizard3Point.ApplyLeveling(instruction.Line, currentDestination, instruction.movementType);
break;