Refactoring: moved most of the low-level G-code to the Slic3r::GCode::Base class. Cleanup of the retraction and wipe logic.

This commit is contained in:
Alessandro Ranellucci 2014-10-21 20:16:45 +02:00
parent 33edda0a69
commit 167df0ab87
11 changed files with 403 additions and 177 deletions

View file

@ -12,6 +12,8 @@
~Extruder();
void reset();
double extrude(double dE);
double retract(double length, double restart_extra);
double unretract();
int id() const
%code%{ RETVAL = THIS->id; %};