mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-21 15:51:10 -06:00
Finish porting the Extruder class to libslic3r
This commit is contained in:
parent
f82e92f498
commit
71ec90a1dd
6 changed files with 40 additions and 46 deletions
|
@ -14,6 +14,9 @@
|
|||
double extrude(double dE);
|
||||
double retract(double length, double restart_extra);
|
||||
double unretract();
|
||||
double e_per_mm(double mm3_per_mm);
|
||||
double extruded_volume();
|
||||
double used_filament();
|
||||
|
||||
int id() const
|
||||
%code%{ RETVAL = THIS->id; %};
|
||||
|
@ -34,6 +37,10 @@
|
|||
%code%{ RETVAL = THIS->restart_extra; %};
|
||||
double set_restart_extra(double val) const
|
||||
%code%{ RETVAL = THIS->restart_extra = val; %};
|
||||
double e_per_mm3()
|
||||
%code%{ RETVAL = THIS->e_per_mm3; %};
|
||||
double retract_speed_mm_min()
|
||||
%code%{ RETVAL = THIS->retract_speed_mm_min; %};
|
||||
|
||||
Clone<Pointf> extruder_offset() const;
|
||||
double nozzle_diameter() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue