mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-30 16:42:43 +00:00
Merge branch 'master' into sender
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
%}
|
||||
|
||||
%name{Slic3r::Extruder} class Extruder {
|
||||
Extruder(int id, GCodeConfig *config);
|
||||
Extruder(unsigned int id, GCodeConfig *config);
|
||||
~Extruder();
|
||||
void reset();
|
||||
double extrude(double dE);
|
||||
@@ -16,7 +16,7 @@
|
||||
double extruded_volume();
|
||||
double used_filament();
|
||||
|
||||
int id()
|
||||
unsigned int id()
|
||||
%code%{ RETVAL = THIS->id; %};
|
||||
|
||||
double E()
|
||||
|
||||
@@ -183,7 +183,7 @@ ModelMaterial::attributes()
|
||||
void scale_xyz(Pointf3* versor)
|
||||
%code{% THIS->scale(*versor); %};
|
||||
void rotate(float angle, Axis axis);
|
||||
void flip(Axis axis);
|
||||
void mirror(Axis axis);
|
||||
|
||||
Model* cut(double z)
|
||||
%code%{
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
void rotate_x(float angle);
|
||||
void rotate_y(float angle);
|
||||
void rotate_z(float angle);
|
||||
void flip_x();
|
||||
void flip_y();
|
||||
void flip_z();
|
||||
void mirror_x();
|
||||
void mirror_y();
|
||||
void mirror_z();
|
||||
void align_to_origin();
|
||||
void rotate(double angle, Point* center);
|
||||
TriangleMeshPtrs split();
|
||||
|
||||
Reference in New Issue
Block a user