update libslic3r

This commit is contained in:
QIDI TECH
2025-05-05 19:52:57 +08:00
parent eae8e18c3a
commit 126534997a
180 changed files with 24833 additions and 5679 deletions

View File

@@ -102,6 +102,8 @@ public:
void append(const Polyline& src);
void append(Polyline&& src);
Polyline rebase_at(size_t idx);
Point& operator[](Points::size_type idx) { return this->points[idx]; }
const Point& operator[](Points::size_type idx) const { return this->points[idx]; }
@@ -265,6 +267,8 @@ public:
Polyline::clear();
width.clear();
}
ThickPolyline rebase_at(size_t idx);
coordf_t get_width_at(size_t point_idx) const;
std::vector<coordf_t> width;
std::pair<bool,bool> endpoints;