PrusaSlicer-NonPlainar/xs/src/libslic3r/Fill/FillRectilinear2.hpp

75 lines
2.3 KiB
C++
Raw Normal View History

#ifndef slic3r_FillRectilinear2_hpp_
#define slic3r_FillRectilinear2_hpp_
#include "../libslic3r.h"
#include "FillBase.hpp"
namespace Slic3r {
class Surface;
2016-09-13 09:26:38 +00:00
class FillRectilinear2 : public Fill
{
public:
2016-11-30 18:47:45 +00:00
virtual Fill* clone() const { return new FillRectilinear2(*this); };
virtual ~FillRectilinear2() {}
virtual Polylines fill_surface(const Surface *surface, const FillParams &params);
protected:
2016-10-21 16:56:55 +00:00
bool fill_surface_by_lines(const Surface *surface, const FillParams &params, float angleBase, float pattern_shift, Polylines &polylines_out);
};
class FillGrid2 : public FillRectilinear2
{
public:
2016-11-30 18:47:45 +00:00
virtual Fill* clone() const { return new FillGrid2(*this); };
virtual ~FillGrid2() {}
2016-09-13 09:26:38 +00:00
virtual Polylines fill_surface(const Surface *surface, const FillParams &params);
protected:
// The grid fill will keep the angle constant between the layers, see the implementation of Slic3r::Fill.
virtual float _layer_angle(size_t idx) const { return 0.f; }
};
class FillTriangles : public FillRectilinear2
{
public:
2016-11-30 18:47:45 +00:00
virtual Fill* clone() const { return new FillTriangles(*this); };
virtual ~FillTriangles() {}
virtual Polylines fill_surface(const Surface *surface, const FillParams &params);
protected:
// The grid fill will keep the angle constant between the layers, see the implementation of Slic3r::Fill.
virtual float _layer_angle(size_t idx) const { return 0.f; }
};
class FillStars : public FillRectilinear2
{
public:
2016-11-30 18:47:45 +00:00
virtual Fill* clone() const { return new FillStars(*this); };
virtual ~FillStars() {}
virtual Polylines fill_surface(const Surface *surface, const FillParams &params);
protected:
// The grid fill will keep the angle constant between the layers, see the implementation of Slic3r::Fill.
virtual float _layer_angle(size_t idx) const { return 0.f; }
};
2016-10-21 16:56:55 +00:00
class FillCubic : public FillRectilinear2
{
public:
2016-11-30 18:47:45 +00:00
virtual Fill* clone() const { return new FillCubic(*this); };
2016-10-21 16:56:55 +00:00
virtual ~FillCubic() {}
virtual Polylines fill_surface(const Surface *surface, const FillParams &params);
protected:
// The grid fill will keep the angle constant between the layers, see the implementation of Slic3r::Fill.
2016-10-21 16:56:55 +00:00
virtual float _layer_angle(size_t idx) const { return 0.f; }
};
}; // namespace Slic3r
#endif // slic3r_FillRectilinear2_hpp_