Putting in info for tool change timing

refactoring extruder index to tool index
This commit is contained in:
LarsBrubaker 2019-03-04 08:04:29 -08:00
parent 0c6a0fe4be
commit 457e31ef10
8 changed files with 41 additions and 24 deletions

View file

@ -71,14 +71,14 @@ namespace MatterControl.Printing
EPosition = copy.EPosition;
MovementType = copy.MovementType;
SecondsToEndFromHere = copy.SecondsToEndFromHere;
ExtruderIndex = copy.ExtruderIndex;
ToolIndex = copy.ToolIndex;
}
public enum MovementTypes { Absolute, Relative };
public float EPosition { get; set; }
public int ExtruderIndex { get; set; }
public int ToolIndex { get; set; }
public float FeedRate { get; set; }