mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-09-07 11:23:48 +02:00
15 lines
381 B
C++
15 lines
381 B
C++
#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_
|