mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-31 14:41:59 +08:00
30 lines
683 B
C++
30 lines
683 B
C++
#ifndef slic3r_Fill3DHoneycomb_hpp_
|
|
#define slic3r_Fill3DHoneycomb_hpp_
|
|
|
|
#include <map>
|
|
|
|
#include "../libslic3r.h"
|
|
|
|
#include "FillBase.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
class Fill3DHoneycomb : public Fill
|
|
{
|
|
public:
|
|
virtual Fill* clone() const { return new Fill3DHoneycomb(*this); };
|
|
virtual ~Fill3DHoneycomb() {}
|
|
|
|
protected:
|
|
virtual void _fill_surface_single(
|
|
const FillParams ¶ms,
|
|
unsigned int thickness_layers,
|
|
const std::pair<float, Point> &direction,
|
|
ExPolygon &expolygon,
|
|
Polylines &polylines_out);
|
|
};
|
|
|
|
} // namespace Slic3r
|
|
|
|
#endif // slic3r_Fill3DHoneycomb_hpp_
|