mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-10-15 10:51:28 +08:00

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
28 lines
689 B
C++
28 lines
689 B
C++
#ifndef slic3r_FillConcentric_hpp_
|
|
#define slic3r_FillConcentric_hpp_
|
|
|
|
#include "FillBase.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
class FillConcentric : public Fill
|
|
{
|
|
public:
|
|
~FillConcentric() override = default;
|
|
|
|
protected:
|
|
Fill* clone() const override { return new FillConcentric(*this); };
|
|
void _fill_surface_single(
|
|
const FillParams ¶ms,
|
|
unsigned int thickness_layers,
|
|
const std::pair<float, Point> &direction,
|
|
ExPolygon expolygon,
|
|
Polylines &polylines_out) override;
|
|
|
|
bool no_sort() const override { return true; }
|
|
};
|
|
|
|
} // namespace Slic3r
|
|
|
|
#endif // slic3r_FillConcentric_hpp_
|