2020-04-13 10:31:37 +00:00
|
|
|
#include "TriangulateWall.hpp"
|
|
|
|
#include "MTUtils.hpp"
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
//class Ring {
|
|
|
|
// size_t idx = 0, nextidx = 1, startidx = 0, begin = 0, end = 0;
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
//public:
|
|
|
|
// explicit Ring(size_t from, size_t to) : begin(from), end(to) { init(begin); }
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// size_t size() const { return end - begin; }
|
|
|
|
// std::pair<size_t, size_t> pos() const { return {idx, nextidx}; }
|
|
|
|
// bool is_lower() const { return idx < size(); }
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// void inc()
|
|
|
|
// {
|
|
|
|
// if (nextidx != startidx) nextidx++;
|
|
|
|
// if (nextidx == end) nextidx = begin;
|
|
|
|
// idx ++;
|
|
|
|
// if (idx == end) idx = begin;
|
|
|
|
// }
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// void init(size_t pos)
|
|
|
|
// {
|
|
|
|
// startidx = begin + (pos - begin) % size();
|
|
|
|
// idx = startidx;
|
|
|
|
// nextidx = begin + (idx + 1 - begin) % size();
|
|
|
|
// }
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// bool is_finished() const { return nextidx == idx; }
|
|
|
|
//};
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
//template<class Sc>
|
|
|
|
//static Sc sq_dst(const Vec<3, Sc> &v1, const Vec<3, Sc>& v2)
|
|
|
|
//{
|
|
|
|
// Vec<3, Sc> v = v1 - v2;
|
|
|
|
// return v.x() * v.x() + v.y() * v.y() /*+ v.z() * v.z()*/;
|
|
|
|
//}
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
//template<class Sc>
|
|
|
|
//static Sc trscore(const Ring & onring,
|
|
|
|
// const Ring & offring,
|
|
|
|
// const std::vector<Vec<3, Sc>> &pts)
|
|
|
|
//{
|
|
|
|
// Sc a = sq_dst(pts[onring.pos().first], pts[offring.pos().first]);
|
|
|
|
// Sc b = sq_dst(pts[onring.pos().second], pts[offring.pos().first]);
|
|
|
|
// return (std::abs(a) + std::abs(b)) / 2.;
|
|
|
|
//}
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
//template<class Sc>
|
|
|
|
//class Triangulator {
|
|
|
|
// const std::vector<Vec<3, Sc>> *pts;
|
|
|
|
// Ring *onring, *offring;
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// double calc_score() const
|
|
|
|
// {
|
|
|
|
// return trscore(*onring, *offring, *pts);
|
|
|
|
// }
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// void synchronize_rings()
|
|
|
|
// {
|
|
|
|
// Ring lring = *offring;
|
|
|
|
// auto minsc = trscore(*onring, lring, *pts);
|
|
|
|
// size_t imin = lring.pos().first;
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// lring.inc();
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// while(!lring.is_finished()) {
|
|
|
|
// double score = trscore(*onring, lring, *pts);
|
|
|
|
// if (score < minsc) { minsc = score; imin = lring.pos().first; }
|
|
|
|
// lring.inc();
|
|
|
|
// }
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// offring->init(imin);
|
|
|
|
// }
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// void emplace_indices(std::vector<Vec3i> &indices)
|
|
|
|
// {
|
|
|
|
// Vec3i tr{int(onring->pos().first), int(onring->pos().second),
|
|
|
|
// int(offring->pos().first)};
|
|
|
|
// if (onring->is_lower()) std::swap(tr(0), tr(1));
|
|
|
|
// indices.emplace_back(tr);
|
|
|
|
// }
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
//public:
|
|
|
|
// void run(std::vector<Vec3i> &indices)
|
|
|
|
// {
|
|
|
|
// synchronize_rings();
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// double score = 0, prev_score = 0;
|
|
|
|
// while (!onring->is_finished() || !offring->is_finished()) {
|
|
|
|
// prev_score = score;
|
|
|
|
// if (onring->is_finished() || (score = calc_score()) > prev_score) {
|
|
|
|
// std::swap(onring, offring);
|
|
|
|
// } else {
|
|
|
|
// emplace_indices(indices);
|
|
|
|
// onring->inc();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// explicit Triangulator(const std::vector<Vec<3, Sc>> *points,
|
|
|
|
// Ring & lower,
|
|
|
|
// Ring & upper)
|
|
|
|
// : pts{points}, onring{&upper}, offring{&lower}
|
|
|
|
// {}
|
|
|
|
//};
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
//template<class Sc, class I>
|
|
|
|
//void triangulate_wall(std::vector<Vec<3, Sc>> &pts,
|
|
|
|
// std::vector<Vec<3, I>> & ind,
|
|
|
|
// const Polygon & lower,
|
|
|
|
// const Polygon & upper,
|
|
|
|
// double lower_z_mm,
|
|
|
|
// double upper_z_mm)
|
|
|
|
//{
|
|
|
|
// if (upper.points.size() < 3 || lower.points.size() < 3) return;
|
|
|
|
|
|
|
|
// pts.reserve(lower.points.size() + upper.points.size());
|
|
|
|
// for (auto &p : lower.points)
|
|
|
|
// pts.emplace_back(unscaled(p.x()), unscaled(p.y()), lower_z_mm);
|
|
|
|
// for (auto &p : upper.points)
|
|
|
|
// pts.emplace_back(unscaled(p.x()), unscaled(p.y()), upper_z_mm);
|
|
|
|
|
|
|
|
// ind.reserve(2 * (lower.size() + upper.size()));
|
|
|
|
|
|
|
|
// Ring lring{0, lower.points.size()}, uring{lower.points.size(), pts.size()};
|
|
|
|
// Triangulator t{&pts, lring, uring};
|
|
|
|
// t.run(ind);
|
|
|
|
//}
|
|
|
|
|
|
|
|
//Wall triangulate_wall(const Polygon &lower,
|
|
|
|
// const Polygon &upper,
|
|
|
|
// double lower_z_mm,
|
|
|
|
// double upper_z_mm)
|
|
|
|
//{
|
|
|
|
// if (upper.points.size() < 3 || lower.points.size() < 3) return {};
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// Wall wall;
|
|
|
|
// auto &pts = wall.first;
|
|
|
|
// auto &ind = wall.second;
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// pts.reserve(lower.points.size() + upper.points.size());
|
|
|
|
// for (auto &p : lower.points)
|
|
|
|
// wall.first.emplace_back(unscaled(p.x()), unscaled(p.y()), lower_z_mm);
|
|
|
|
// for (auto &p : upper.points)
|
|
|
|
// wall.first.emplace_back(unscaled(p.x()), unscaled(p.y()), upper_z_mm);
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// ind.reserve(2 * (lower.size() + upper.size()));
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// Ring lring{0, lower.points.size()}, uring{lower.points.size(), pts.size()};
|
|
|
|
// Triangulator t{&pts, lring, uring};
|
|
|
|
// t.run(ind);
|
2020-04-13 10:31:37 +00:00
|
|
|
|
2021-05-21 12:08:05 +00:00
|
|
|
// return wall;
|
|
|
|
//}
|
2020-04-13 10:31:37 +00:00
|
|
|
|
|
|
|
} // namespace Slic3r
|