Thanks PrusaSlicer. Signed-off-by: salt.wei <salt.wei@bambulab.com> Change-Id: I9173f91629fa6c90d8bc3756d7d1fdbfd8605eab
13 lines
485 B
C++
13 lines
485 B
C++
#ifndef slic3r_VariableWidth_hpp_
|
|
#define slic3r_VariableWidth_hpp_
|
|
|
|
#include "Polygon.hpp"
|
|
#include "ExtrusionEntity.hpp"
|
|
#include "Flow.hpp"
|
|
|
|
namespace Slic3r {
|
|
ExtrusionMultiPath thick_polyline_to_multi_path(const ThickPolyline& thick_polyline, ExtrusionRole role, const Flow& flow, const float tolerance, const float merge_tolerance);
|
|
void variable_width(const ThickPolylines& polylines, ExtrusionRole role, const Flow& flow, std::vector<ExtrusionEntity*>& out);
|
|
}
|
|
|
|
#endif
|