mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-09 00:41:48 +08:00

ConcentricGapFill pattern was used for internal narrow solid infill. Use arachne engine instead to remove gap fill inside the pattern and improve the extrusion path Signed-off-by: salt.wei <salt.wei@bambulab.com> Change-Id: I758d7c72eb71cc37026b7cebf746cc345014c3f5 (cherry picked from commit 0b6bacd21a091afc13d7b36a69e5b10f155bc6f8)
14 lines
486 B
C++
14 lines
486 B
C++
#ifndef slic3r_VariableWidth_hpp_
|
|
#define slic3r_VariableWidth_hpp_
|
|
|
|
#include "Polygon.hpp"
|
|
#include "ExtrusionEntity.hpp"
|
|
#include "Flow.hpp"
|
|
|
|
namespace Slic3r {
|
|
ExtrusionPaths thick_polyline_to_extrusion_paths(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
|