Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ElephantFootCompensation.hpp « libslic3r « src - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0119df1af5c730e76b84a6ee5cc47449e202d8da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef slic3r_ElephantFootCompensation_hpp_
#define slic3r_ElephantFootCompensation_hpp_

#include "libslic3r.h"
#include <vector>

namespace Slic3r {

class Flow;

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_ */