mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-21 21:58:03 -06:00
Ported PrintObject::prepare_infill & combine_infill from Perl to C++.
This commit is contained in:
parent
933d5b261a
commit
777023c7a8
10 changed files with 526 additions and 591 deletions
|
@ -13,8 +13,8 @@ public:
|
|||
Surfaces surfaces;
|
||||
|
||||
SurfaceCollection() {};
|
||||
SurfaceCollection(const Surfaces &_surfaces)
|
||||
: surfaces(_surfaces) {};
|
||||
SurfaceCollection(const Surfaces &surfaces) : surfaces(surfaces) {};
|
||||
SurfaceCollection(Surfaces &&surfaces) : surfaces(std::move(surfaces)) {};
|
||||
operator Polygons() const;
|
||||
operator ExPolygons() const;
|
||||
void simplify(double tolerance);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue