mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-12 05:20:58 +00:00
* Initial port of the new ensure vertical thickness algorithm from PrusaSlicer. Based on prusa3d/PrusaSlicer@1a0d8f5130 * Remove code related to "Detect narrow internal solid infill" as it's handled by the new ensuring code * Support different internal solid infill pattern * Ignore removed options --------- Co-authored-by: Pavel Mikuš <pavel.mikus.mail@seznam.cz> Co-authored-by: SoftFever <softfeverever@gmail.com>
24 lines
594 B
C++
24 lines
594 B
C++
#ifndef slic3r_FillConcentricInternal_hpp_
|
|
#define slic3r_FillConcentricInternal_hpp_
|
|
|
|
#include "FillBase.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
class FillConcentricInternal : public Fill
|
|
{
|
|
public:
|
|
~FillConcentricInternal() override = default;
|
|
void fill_surface_extrusion(const Surface *surface, const FillParams ¶ms, ExtrusionEntitiesPtr &out) override;
|
|
|
|
protected:
|
|
Fill* clone() const override { return new FillConcentricInternal(*this); };
|
|
bool no_sort() const override { return true; }
|
|
|
|
friend class Layer;
|
|
};
|
|
|
|
} // namespace Slic3r
|
|
|
|
#endif // slic3r_FillConcentricInternal_hpp_
|