mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-07-07 18:04:24 +03:00
While reimplementing the FillPlanePath code, the octagon infill was fixed to extrude the right amount of material.
25 lines
529 B
C++
25 lines
529 B
C++
#ifndef slic3r_Fill3DHoneycomb_hpp_
|
|
#define slic3r_Fill3DHoneycomb_hpp_
|
|
|
|
#include <map>
|
|
|
|
#include "../libslic3r.h"
|
|
|
|
#include "FillBase.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
class Fill3DHoneycomb : public FillWithDirection
|
|
{
|
|
public:
|
|
virtual ~Fill3DHoneycomb() {}
|
|
virtual Polylines fill_surface(const Surface *surface, const FillParams ¶ms);
|
|
|
|
// require bridge flow since most of this pattern hangs in air
|
|
virtual bool use_bridge_flow() const { return true; }
|
|
};
|
|
|
|
} // namespace Slic3r
|
|
|
|
#endif // slic3r_Fill3DHoneycomb_hpp_
|