added a hotend temperature stream
In the gcode line view show time to next extruder switch refactored gcode memory file gcode render features keep track of their gcode line index issue: MatterHackers/MCCentral#4679 Turn off hot end temp if not used for remainder of print
This commit is contained in:
parent
78b01b4d21
commit
394325db97
11 changed files with 718 additions and 541 deletions
|
|
@ -43,8 +43,8 @@ namespace MatterHackers.GCodeVisualizer
|
|||
private float mmPerSecond;
|
||||
private Vector3Float position;
|
||||
|
||||
public RenderFeatureRetract(Vector3 position, double extrusionAmount, int extruderIndex, double mmPerSecond)
|
||||
: base(extruderIndex)
|
||||
public RenderFeatureRetract(int instructionIndex, Vector3 position, double extrusionAmount, int extruderIndex, double mmPerSecond)
|
||||
: base(instructionIndex, extruderIndex)
|
||||
{
|
||||
this.extrusionAmount = (float)extrusionAmount;
|
||||
this.mmPerSecond = (float)mmPerSecond;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue