mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 09:47:58 -06:00
Add the full source of BambuStudio
using version 1.0.10
This commit is contained in:
parent
30bcadab3e
commit
1555904bef
3771 changed files with 1251328 additions and 0 deletions
282
src/libslic3r/Polyline.hpp
Normal file
282
src/libslic3r/Polyline.hpp
Normal file
|
@ -0,0 +1,282 @@
|
|||
#ifndef slic3r_Polyline_hpp_
|
||||
#define slic3r_Polyline_hpp_
|
||||
|
||||
#include "libslic3r.h"
|
||||
#include "Line.hpp"
|
||||
#include "MultiPoint.hpp"
|
||||
#include <string>
|
||||
#include <vector>
|
||||
//BBS: new necessary header file
|
||||
#include "ArcFitter.hpp"
|
||||
|
||||
namespace Slic3r {
|
||||
|
||||
class Polyline;
|
||||
class ThickPolyline;
|
||||
typedef std::vector<Polyline> Polylines;
|
||||
typedef std::vector<ThickPolyline> ThickPolylines;
|
||||
|
||||
class Polyline : public MultiPoint {
|
||||
public:
|
||||
Polyline() {};
|
||||
Polyline(const Polyline& other) : MultiPoint(other.points), fitting_result(other.fitting_result) {}
|
||||
Polyline(Polyline &&other) : MultiPoint(std::move(other.points)), fitting_result(std::move(other.fitting_result)) {}
|
||||
Polyline(std::initializer_list<Point> list) : MultiPoint(list) {
|
||||
fitting_result.clear();
|
||||
}
|
||||
explicit Polyline(const Point &p1, const Point &p2) {
|
||||
points.reserve(2);
|
||||
points.emplace_back(p1);
|
||||
points.emplace_back(p2);
|
||||
fitting_result.clear();
|
||||
}
|
||||
explicit Polyline(const Points &points) : MultiPoint(points) {
|
||||
fitting_result.clear();
|
||||
}
|
||||
explicit Polyline(Points &&points) : MultiPoint(std::move(points)) {
|
||||
fitting_result.clear();
|
||||
}
|
||||
Polyline& operator=(const Polyline& other) {
|
||||
points = other.points;
|
||||
fitting_result = other.fitting_result;
|
||||
return *this;
|
||||
}
|
||||
Polyline& operator=(Polyline&& other) {
|
||||
points = std::move(other.points);
|
||||
fitting_result = std::move(other.fitting_result);
|
||||
return *this;
|
||||
}
|
||||
static Polyline new_scale(const std::vector<Vec2d> &points) {
|
||||
Polyline pl;
|
||||
pl.points.reserve(points.size());
|
||||
for (const Vec2d &pt : points)
|
||||
pl.points.emplace_back(Point::new_scale(pt(0), pt(1)));
|
||||
//BBS: new_scale doesn't support arc, so clean
|
||||
pl.fitting_result.clear();
|
||||
return pl;
|
||||
}
|
||||
|
||||
void append(const Point &point) {
|
||||
//BBS: don't need to append same point
|
||||
if (!this->empty() && this->last_point() == point)
|
||||
return;
|
||||
MultiPoint::append(point);
|
||||
append_fitting_result_after_append_points();
|
||||
}
|
||||
|
||||
void append_before(const Point& point) {
|
||||
//BBS: don't need to append same point
|
||||
if (!this->empty() && this->first_point() == point)
|
||||
return;
|
||||
if (this->size() == 1) {
|
||||
this->fitting_result.clear();
|
||||
MultiPoint::append(point);
|
||||
MultiPoint::reverse();
|
||||
} else {
|
||||
this->reverse();
|
||||
this->append(point);
|
||||
this->reverse();
|
||||
}
|
||||
}
|
||||
|
||||
void append(const Points &src) {
|
||||
//BBS: don't need to append same point
|
||||
if (!this->empty() && !src.empty() && this->last_point() == src[0])
|
||||
this->append(src.begin() + 1, src.end());
|
||||
else
|
||||
this->append(src.begin(), src.end());
|
||||
}
|
||||
void append(const Points::const_iterator &begin, const Points::const_iterator &end) {
|
||||
//BBS: don't need to append same point
|
||||
if (!this->empty() && begin != end && this->last_point() == *begin)
|
||||
MultiPoint::append(begin + 1, end);
|
||||
else
|
||||
MultiPoint::append(begin, end);
|
||||
append_fitting_result_after_append_points();
|
||||
}
|
||||
void append(Points &&src)
|
||||
{
|
||||
MultiPoint::append(std::move(src));
|
||||
append_fitting_result_after_append_points();
|
||||
}
|
||||
void append(const Polyline &src)
|
||||
{
|
||||
if (!src.is_valid()) return;
|
||||
|
||||
if (this->points.empty()) {
|
||||
this->points = src.points;
|
||||
this->fitting_result = src.fitting_result;
|
||||
} else {
|
||||
//BBS: append the first point to create connection first, update the fitting date as well
|
||||
this->append(src.points[0]);
|
||||
//BBS: then append the remain points
|
||||
MultiPoint::append(src.points.begin() + 1, src.points.end());
|
||||
//BBS: finally append the fitting data
|
||||
append_fitting_result_after_append_polyline(src);
|
||||
}
|
||||
}
|
||||
|
||||
void append(Polyline &&src)
|
||||
{
|
||||
if (!src.is_valid()) return;
|
||||
|
||||
if (this->points.empty()) {
|
||||
this->points = std::move(src.points);
|
||||
this->fitting_result = std::move(src.fitting_result);
|
||||
} else {
|
||||
//BBS: append the first point to create connection first, update the fitting date as well
|
||||
this->append(src.points[0]);
|
||||
//BBS: then append the remain points
|
||||
MultiPoint::append(src.points.begin() + 1, src.points.end());
|
||||
//BBS: finally append the fitting data
|
||||
append_fitting_result_after_append_polyline(src);
|
||||
src.points.clear();
|
||||
src.fitting_result.clear();
|
||||
}
|
||||
}
|
||||
|
||||
const Point& last_point() const override { return this->points.back(); }
|
||||
const Point& leftmost_point() const;
|
||||
Lines lines() const override;
|
||||
|
||||
void clear() { MultiPoint::clear(); this->fitting_result.clear(); }
|
||||
void reverse();
|
||||
void clip_end(double distance);
|
||||
void clip_start(double distance);
|
||||
void extend_end(double distance);
|
||||
void extend_start(double distance);
|
||||
Points equally_spaced_points(double distance) const;
|
||||
void simplify(double tolerance);
|
||||
// template <class T> void simplify_by_visibility(const T &area);
|
||||
void split_at(Point &point, Polyline* p1, Polyline* p2) const;
|
||||
bool split_at_index(const size_t index, Polyline* p1, Polyline* p2) const;
|
||||
|
||||
bool is_straight() const;
|
||||
bool is_closed() const { return this->points.front() == this->points.back(); }
|
||||
|
||||
//BBS: store arc fitting result
|
||||
std::vector<PathFittingData> fitting_result;
|
||||
//BBS: simplify points by arc fitting
|
||||
void simplify_by_fitting_arc(double tolerance);
|
||||
//BBS:
|
||||
Polylines equally_spaced_lines(double distance) const;
|
||||
|
||||
private:
|
||||
void append_fitting_result_after_append_points();
|
||||
void append_fitting_result_after_append_polyline(const Polyline& src);
|
||||
void reset_to_linear_move();
|
||||
bool split_fitting_result_before_index(const size_t index, Point &new_endpoint, std::vector<PathFittingData>& data) const;
|
||||
bool split_fitting_result_after_index(const size_t index, Point &new_startpoint, std::vector<PathFittingData>& data) const;
|
||||
};
|
||||
|
||||
inline bool operator==(const Polyline &lhs, const Polyline &rhs) { return lhs.points == rhs.points; }
|
||||
inline bool operator!=(const Polyline &lhs, const Polyline &rhs) { return lhs.points != rhs.points; }
|
||||
|
||||
// Don't use this class in production code, it is used exclusively by the Perl binding for unit tests!
|
||||
#ifdef PERL_UCHAR_MIN
|
||||
class PolylineCollection
|
||||
{
|
||||
public:
|
||||
Polylines polylines;
|
||||
};
|
||||
#endif /* PERL_UCHAR_MIN */
|
||||
|
||||
extern BoundingBox get_extents(const Polyline &polyline);
|
||||
extern BoundingBox get_extents(const Polylines &polylines);
|
||||
|
||||
inline double total_length(const Polylines &polylines) {
|
||||
double total = 0;
|
||||
for (const Polyline &pl : polylines)
|
||||
total += pl.length();
|
||||
return total;
|
||||
}
|
||||
|
||||
inline Lines to_lines(const Polyline &poly)
|
||||
{
|
||||
Lines lines;
|
||||
if (poly.points.size() >= 2) {
|
||||
lines.reserve(poly.points.size() - 1);
|
||||
for (Points::const_iterator it = poly.points.begin(); it != poly.points.end()-1; ++it)
|
||||
lines.push_back(Line(*it, *(it + 1)));
|
||||
}
|
||||
return lines;
|
||||
}
|
||||
|
||||
inline Lines to_lines(const Polylines &polys)
|
||||
{
|
||||
size_t n_lines = 0;
|
||||
for (size_t i = 0; i < polys.size(); ++ i)
|
||||
if (polys[i].points.size() > 1)
|
||||
n_lines += polys[i].points.size() - 1;
|
||||
Lines lines;
|
||||
lines.reserve(n_lines);
|
||||
for (size_t i = 0; i < polys.size(); ++ i) {
|
||||
const Polyline &poly = polys[i];
|
||||
for (Points::const_iterator it = poly.points.begin(); it != poly.points.end()-1; ++it)
|
||||
lines.push_back(Line(*it, *(it + 1)));
|
||||
}
|
||||
return lines;
|
||||
}
|
||||
|
||||
inline Polylines to_polylines(const std::vector<Points> &paths)
|
||||
{
|
||||
Polylines out;
|
||||
out.reserve(paths.size());
|
||||
for (const Points &path : paths)
|
||||
out.emplace_back(path);
|
||||
return out;
|
||||
}
|
||||
|
||||
inline Polylines to_polylines(std::vector<Points> &&paths)
|
||||
{
|
||||
Polylines out;
|
||||
out.reserve(paths.size());
|
||||
for (const Points &path : paths)
|
||||
out.emplace_back(std::move(path));
|
||||
return out;
|
||||
}
|
||||
|
||||
inline void polylines_append(Polylines &dst, const Polylines &src)
|
||||
{
|
||||
dst.insert(dst.end(), src.begin(), src.end());
|
||||
}
|
||||
|
||||
inline void polylines_append(Polylines &dst, Polylines &&src)
|
||||
{
|
||||
if (dst.empty()) {
|
||||
dst = std::move(src);
|
||||
} else {
|
||||
std::move(std::begin(src), std::end(src), std::back_inserter(dst));
|
||||
src.clear();
|
||||
}
|
||||
}
|
||||
|
||||
const Point& leftmost_point(const Polylines &polylines);
|
||||
|
||||
bool remove_degenerate(Polylines &polylines);
|
||||
|
||||
class ThickPolyline : public Polyline {
|
||||
public:
|
||||
ThickPolyline() : endpoints(std::make_pair(false, false)) {}
|
||||
ThickLines thicklines() const;
|
||||
void reverse() {
|
||||
Polyline::reverse();
|
||||
std::reverse(this->width.begin(), this->width.end());
|
||||
std::swap(this->endpoints.first, this->endpoints.second);
|
||||
}
|
||||
|
||||
std::vector<coordf_t> width;
|
||||
std::pair<bool,bool> endpoints;
|
||||
};
|
||||
|
||||
class Polyline3 : public MultiPoint3
|
||||
{
|
||||
public:
|
||||
virtual Lines3 lines() const;
|
||||
};
|
||||
|
||||
typedef std::vector<Polyline3> Polylines3;
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue