mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-31 04:31:15 -06:00 
			
		
		
		
	 96d5c8c35d
			
		
	
	
		96d5c8c35d
		
	
	
	
	
		
			
			Work in progress Convert efc input to the right scaling Apply EFC on the slice index to make it visible in the preview.
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			722 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			722 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef slic3r_ElephantFootCompensation_hpp_
 | |
| #define slic3r_ElephantFootCompensation_hpp_
 | |
| 
 | |
| #include "libslic3r.h"
 | |
| #include <vector>
 | |
| 
 | |
| namespace Slic3r {
 | |
| 
 | |
| class Flow;
 | |
| 
 | |
| ExPolygon  elephant_foot_compensation(const ExPolygon  &input, double min_countour_width, const double compensation);
 | |
| ExPolygons elephant_foot_compensation(const ExPolygons &input, double min_countour_width, const double compensation);
 | |
| ExPolygon  elephant_foot_compensation(const ExPolygon  &input, const Flow &external_perimeter_flow, const double compensation);
 | |
| ExPolygons elephant_foot_compensation(const ExPolygons &input, const Flow &external_perimeter_flow, const double compensation);
 | |
| 
 | |
| } // Slic3r
 | |
| 
 | |
| #endif /* slic3r_ElephantFootCompensation_hpp_ */
 |