mirror of
https://github.com/Dark98/SliceBeam.git
synced 2026-07-05 08:39:03 +00:00
24 lines
962 B
C++
24 lines
962 B
C++
///|/ Copyright (c) Prusa Research 2019 - 2021 Lukáš Hejl @hejllukas, Tomáš Mészáros @tamasmeszaros, Vojtěch Bubník @bubnikv
|
|
///|/
|
|
///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher
|
|
///|/
|
|
#ifndef slic3r_ElephantFootCompensation_hpp_
|
|
#define slic3r_ElephantFootCompensation_hpp_
|
|
|
|
#include "libslic3r.h"
|
|
#include "ExPolygon.hpp"
|
|
#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_ */
|