Fixing the infill order for concentric infill to outside-in.

Relies to:
Concentric Fill Start Point - New Feature Request #4948
Feature Request: Archimedean Chords - Option to define direction of travel (Inside-Out or Outside-In) #5214
This commit is contained in:
Vojtech Bubnik 2021-01-06 11:05:22 +01:00
parent 746729e4fa
commit 3c9f3d2b66
5 changed files with 21 additions and 36 deletions

View file

@ -8,7 +8,7 @@ namespace Slic3r {
class FillConcentric : public Fill
{
public:
~FillConcentric() override {}
~FillConcentric() override = default;
protected:
Fill* clone() const override { return new FillConcentric(*this); };