mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 08:47:52 -06:00
GCodeViewer -> Extrusion toolpaths colored by color print (wip) + visualization of tool changes, color changes, pause prints, custom gcodes + refactoring
This commit is contained in:
parent
603f128568
commit
7a0df4bcb4
16 changed files with 516 additions and 77 deletions
|
@ -21,7 +21,9 @@ namespace Slic3r {
|
|||
static const std::string Color_Change_Tag;
|
||||
static const std::string Pause_Print_Tag;
|
||||
static const std::string Custom_Code_Tag;
|
||||
#if !ENABLE_GCODE_VIEWER_SEPARATE_PAUSE_PRINT
|
||||
static const std::string End_Pause_Print_Or_Custom_Code_Tag;
|
||||
#endif // !ENABLE_GCODE_VIEWER_SEPARATE_PAUSE_PRINT
|
||||
|
||||
private:
|
||||
using AxisCoords = std::array<float, 4>;
|
||||
|
@ -62,6 +64,11 @@ namespace Slic3r {
|
|||
Retract,
|
||||
Unretract,
|
||||
Tool_change,
|
||||
#if ENABLE_GCODE_VIEWER_SEPARATE_PAUSE_PRINT
|
||||
Color_change,
|
||||
Pause_Print,
|
||||
Custom_GCode,
|
||||
#endif // ENABLE_GCODE_VIEWER_SEPARATE_PAUSE_PRINT
|
||||
Travel,
|
||||
Extrude,
|
||||
Count
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue