2022-07-15 15:37:19 +00:00
|
|
|
#ifndef slic3r_VariableWidth_hpp_
|
|
|
|
#define slic3r_VariableWidth_hpp_
|
|
|
|
|
|
|
|
#include "Polygon.hpp"
|
|
|
|
#include "ExtrusionEntity.hpp"
|
|
|
|
#include "Flow.hpp"
|
|
|
|
|
|
|
|
namespace Slic3r {
|
2024-04-15 08:52:47 +00:00
|
|
|
ExtrusionMultiPath thick_polyline_to_multi_path(const ThickPolyline& thick_polyline, ExtrusionRole role, const Flow& flow, const float tolerance, const float merge_tolerance, int overhang);
|
2022-07-15 15:37:19 +00:00
|
|
|
void variable_width(const ThickPolylines& polylines, ExtrusionRole role, const Flow& flow, std::vector<ExtrusionEntity*>& out);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|