orcaslicer/src/libslic3r/VariableWidth.hpp
salt.wei 208f7c32da ENH: fix another assert in wall generator
Thanks PrusaSlicer.

Signed-off-by: salt.wei <salt.wei@bambulab.com>
Change-Id: I9173f91629fa6c90d8bc3756d7d1fdbfd8605eab
2023-07-07 17:29:08 +08:00

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