mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-11-02 12:41:18 -07:00
Refactoring: removed _islands members in Slic3r::GCode
This commit is contained in:
parent
4925b056c2
commit
5deadc8f12
6 changed files with 44 additions and 36 deletions
|
|
@ -19,6 +19,10 @@
|
|||
%code{% RETVAL = THIS->expolygons.size(); %};
|
||||
bool contains_point(Point* point)
|
||||
%code{% RETVAL = THIS->contains_point(*point); %};
|
||||
bool contains_line(Line* line)
|
||||
%code{% RETVAL = THIS->contains_line(*line); %};
|
||||
bool contains_polyline(Polyline* polyline)
|
||||
%code{% RETVAL = THIS->contains_polyline(*polyline); %};
|
||||
void simplify(double tolerance);
|
||||
Polygons polygons()
|
||||
%code{% RETVAL = *THIS; %};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue