2019-11-01 18:59:09 +00:00
|
|
|
#ifndef slic3r_ElephantFootCompensation_hpp_
|
|
|
|
#define slic3r_ElephantFootCompensation_hpp_
|
|
|
|
|
|
|
|
#include "libslic3r.h"
|
2021-05-27 14:47:31 +00:00
|
|
|
#include "ExPolygon.hpp"
|
2019-11-01 18:59:09 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
class Flow;
|
|
|
|
|
2020-02-06 13:09:48 +00:00
|
|
|
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);
|
2019-11-01 18:59:09 +00:00
|
|
|
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_ */
|