Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Brim.hpp « libslic3r « src - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18bff2960cfd6b7d8f48c7a87fca1a145d061e04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef slic3r_Brim_hpp_
#define slic3r_Brim_hpp_

namespace Slic3r {

class Print;

// Produce brim lines around those objects, that have the brim enabled.
// Collect islands_area to be merged into the final 1st layer convex hull.
ExtrusionEntityCollection make_brim(const Print &print, PrintTryCancel try_cancel, Polygons &islands_area);

} // Slic3r

#endif // slic3r_Brim_hpp_