2015-07-03 20:58:29 +00:00
|
|
|
#ifndef slic3r_PerimeterGenerator_hpp_
|
|
|
|
#define slic3r_PerimeterGenerator_hpp_
|
|
|
|
|
|
|
|
#include <myinit.h>
|
2015-07-23 13:53:02 +00:00
|
|
|
#include <vector>
|
|
|
|
#include "ExPolygonCollection.hpp"
|
|
|
|
#include "Flow.hpp"
|
|
|
|
#include "Polygon.hpp"
|
|
|
|
#include "PrintConfig.hpp"
|
|
|
|
#include "SurfaceCollection.hpp"
|
2015-07-03 20:58:29 +00:00
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
class PerimeterGeneratorLoop;
|
2015-07-06 23:17:31 +00:00
|
|
|
typedef std::vector<PerimeterGeneratorLoop> PerimeterGeneratorLoops;
|
2015-07-03 20:58:29 +00:00
|
|
|
|
|
|
|
class PerimeterGeneratorLoop {
|
|
|
|
public:
|
|
|
|
Polygon polygon;
|
|
|
|
bool is_contour;
|
|
|
|
unsigned short depth;
|
|
|
|
std::vector<PerimeterGeneratorLoop> children;
|
|
|
|
|
|
|
|
PerimeterGeneratorLoop(Polygon polygon, unsigned short depth)
|
2015-07-28 21:29:25 +00:00
|
|
|
: polygon(polygon), is_contour(false), depth(depth)
|
2015-07-03 20:58:29 +00:00
|
|
|
{};
|
|
|
|
bool is_external() const;
|
|
|
|
bool is_internal_contour() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class PerimeterGenerator {
|
|
|
|
public:
|
2015-07-23 14:27:21 +00:00
|
|
|
const SurfaceCollection* slices;
|
|
|
|
const ExPolygonCollection* lower_slices;
|
2015-07-03 20:58:29 +00:00
|
|
|
double layer_height;
|
|
|
|
int layer_id;
|
|
|
|
Flow perimeter_flow;
|
|
|
|
Flow ext_perimeter_flow;
|
|
|
|
Flow overhang_flow;
|
|
|
|
Flow solid_infill_flow;
|
|
|
|
PrintRegionConfig* config;
|
|
|
|
PrintObjectConfig* object_config;
|
|
|
|
PrintConfig* print_config;
|
|
|
|
ExtrusionEntityCollection* loops;
|
|
|
|
ExtrusionEntityCollection* gap_fill;
|
|
|
|
SurfaceCollection* fill_surfaces;
|
|
|
|
|
2015-07-23 14:27:21 +00:00
|
|
|
PerimeterGenerator(const SurfaceCollection* slices, double layer_height, Flow flow,
|
2015-07-06 23:17:31 +00:00
|
|
|
PrintRegionConfig* config, PrintObjectConfig* object_config,
|
|
|
|
PrintConfig* print_config, ExtrusionEntityCollection* loops,
|
|
|
|
ExtrusionEntityCollection* gap_fill, SurfaceCollection* fill_surfaces)
|
2015-07-23 13:53:02 +00:00
|
|
|
: slices(slices), lower_slices(NULL), layer_height(layer_height),
|
2015-07-28 21:29:25 +00:00
|
|
|
layer_id(-1), perimeter_flow(flow), ext_perimeter_flow(flow),
|
|
|
|
overhang_flow(flow), solid_infill_flow(flow),
|
2015-07-06 23:17:31 +00:00
|
|
|
config(config), object_config(object_config), print_config(print_config),
|
2015-07-23 13:53:02 +00:00
|
|
|
loops(loops), gap_fill(gap_fill), fill_surfaces(fill_surfaces),
|
2015-07-06 23:17:31 +00:00
|
|
|
_ext_mm3_per_mm(-1), _mm3_per_mm(-1), _mm3_per_mm_overhang(-1)
|
2015-07-03 20:58:29 +00:00
|
|
|
{};
|
|
|
|
void process();
|
|
|
|
|
|
|
|
private:
|
2015-07-06 23:17:31 +00:00
|
|
|
double _ext_mm3_per_mm;
|
|
|
|
double _mm3_per_mm;
|
|
|
|
double _mm3_per_mm_overhang;
|
2015-07-03 20:58:29 +00:00
|
|
|
Polygons _lower_slices_p;
|
|
|
|
|
2015-07-06 23:17:31 +00:00
|
|
|
ExtrusionEntityCollection _traverse_loops(const PerimeterGeneratorLoops &loops,
|
2015-07-23 13:53:02 +00:00
|
|
|
Polylines &thin_walls) const;
|
2015-07-03 20:58:29 +00:00
|
|
|
ExtrusionEntityCollection _fill_gaps(double min, double max, double w,
|
|
|
|
const Polygons &gaps) const;
|
|
|
|
};
|
|
|
|
|
2015-07-06 23:17:31 +00:00
|
|
|
class PerimeterGeneratorGapSize {
|
|
|
|
public:
|
|
|
|
coord_t min;
|
|
|
|
coord_t max;
|
|
|
|
coord_t width;
|
2015-07-23 13:53:02 +00:00
|
|
|
PerimeterGeneratorGapSize(coord_t min, coord_t max, coord_t width)
|
2015-07-06 23:17:31 +00:00
|
|
|
: min(min), max(max), width(width) {};
|
|
|
|
};
|
|
|
|
|
2015-07-03 20:58:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|