mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-30 20:21:12 -06:00 
			
		
		
		
	 73c9f939e0
			
		
	
	
		73c9f939e0
		
	
	
	
	
		
			
			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_
 |