mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-06-27 13:06:30 +03:00
While reimplementing the FillPlanePath code, the octagon infill was fixed to extrude the right amount of material.
21 lines
403 B
C++
21 lines
403 B
C++
#ifndef slic3r_FillConcentric_hpp_
|
|
#define slic3r_FillConcentric_hpp_
|
|
|
|
#include "FillBase.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
class FillConcentric : public Fill
|
|
{
|
|
public:
|
|
virtual ~FillConcentric() {}
|
|
virtual Polylines fill_surface(const Surface *surface, const FillParams ¶ms);
|
|
|
|
protected:
|
|
virtual bool no_sort() const { return true; }
|
|
};
|
|
|
|
} // namespace Slic3r
|
|
|
|
#endif // slic3r_FillConcentric_hpp_
|