mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-11-02 20:51:23 -07:00 
			
		
		
		
	brim separated to Brim.cpp,hpp Refactored accessors to PrintObjectPtrs, PrintRegionPtrs, LayerPtrs, SupportLayerPtrs for const correctness.
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			381 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 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_
 |