Add elephant foot compensation to SLA print

Work in progress


Convert efc input to the right scaling


Apply EFC on the slice index to make it visible in the preview.
This commit is contained in:
tamasmeszaros 2020-02-06 14:09:48 +01:00
parent f8c5855d55
commit 96d5c8c35d
8 changed files with 51 additions and 4 deletions

View file

@ -8,6 +8,8 @@ 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);