2018-11-02 10:57:57 +00:00
|
|
|
#include "SLA/SLASupportTree.hpp"
|
|
|
|
#include "SLA/SLABoilerPlate.hpp"
|
|
|
|
#include "SLA/SLASpatIndex.hpp"
|
|
|
|
|
|
|
|
// HEAVY headers... takes eternity to compile
|
|
|
|
|
|
|
|
// for concave hull merging decisions
|
|
|
|
#include "SLABoostAdapter.hpp"
|
|
|
|
#include "boost/geometry/index/rtree.hpp"
|
|
|
|
|
|
|
|
#include <igl/ray_mesh_intersect.h>
|
2018-11-08 16:15:10 +00:00
|
|
|
|
|
|
|
#if !defined(_MSC_VER) || defined(_WIN64)
|
|
|
|
#define IGL_COMPATIBLE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef IGL_COMPATIBLE
|
2018-11-02 10:57:57 +00:00
|
|
|
#include <igl/point_mesh_squared_distance.h>
|
2018-11-08 16:15:10 +00:00
|
|
|
#endif
|
|
|
|
|
2018-11-02 10:57:57 +00:00
|
|
|
#include "SLASpatIndex.hpp"
|
|
|
|
#include "ClipperUtils.hpp"
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
namespace sla {
|
|
|
|
|
|
|
|
class SpatIndex::Impl {
|
|
|
|
public:
|
|
|
|
using BoostIndex = boost::geometry::index::rtree< SpatElement,
|
|
|
|
boost::geometry::index::rstar<16, 4> /* ? */ >;
|
|
|
|
|
|
|
|
BoostIndex m_store;
|
|
|
|
};
|
|
|
|
|
|
|
|
SpatIndex::SpatIndex(): m_impl(new Impl()) {}
|
|
|
|
SpatIndex::~SpatIndex() {}
|
|
|
|
|
|
|
|
SpatIndex::SpatIndex(const SpatIndex &cpy): m_impl(new Impl(*cpy.m_impl)) {}
|
|
|
|
SpatIndex::SpatIndex(SpatIndex&& cpy): m_impl(std::move(cpy.m_impl)) {}
|
|
|
|
|
|
|
|
SpatIndex& SpatIndex::operator=(const SpatIndex &cpy)
|
|
|
|
{
|
|
|
|
m_impl.reset(new Impl(*cpy.m_impl));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
SpatIndex& SpatIndex::operator=(SpatIndex &&cpy)
|
|
|
|
{
|
|
|
|
m_impl.swap(cpy.m_impl);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpatIndex::insert(const SpatElement &el)
|
|
|
|
{
|
|
|
|
m_impl->m_store.insert(el);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SpatIndex::remove(const SpatElement& el)
|
|
|
|
{
|
2018-11-13 16:33:03 +00:00
|
|
|
return m_impl->m_store.remove(el) == 1;
|
2018-11-02 10:57:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<SpatElement>
|
|
|
|
SpatIndex::query(std::function<bool(const SpatElement &)> fn)
|
|
|
|
{
|
|
|
|
namespace bgi = boost::geometry::index;
|
|
|
|
|
|
|
|
std::vector<SpatElement> ret;
|
|
|
|
m_impl->m_store.query(bgi::satisfies(fn), std::back_inserter(ret));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<SpatElement> SpatIndex::nearest(const Vec3d &el, unsigned k = 1)
|
|
|
|
{
|
|
|
|
namespace bgi = boost::geometry::index;
|
|
|
|
std::vector<SpatElement> ret; ret.reserve(k);
|
|
|
|
m_impl->m_store.query(bgi::nearest(el, k), std::back_inserter(ret));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t SpatIndex::size() const
|
|
|
|
{
|
|
|
|
return m_impl->m_store.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
PointSet normals(const PointSet& points, const EigenMesh3D& mesh) {
|
2018-11-23 09:28:26 +00:00
|
|
|
if(points.rows() == 0 || mesh.V.rows() == 0 || mesh.F.rows() == 0) return {};
|
2018-11-08 16:15:10 +00:00
|
|
|
#ifdef IGL_COMPATIBLE
|
2018-11-12 10:46:38 +00:00
|
|
|
Eigen::VectorXd dists;
|
|
|
|
Eigen::VectorXi I;
|
|
|
|
// Eigen::Matrix<double, Eigen::Dynamic, 1, Eigen::DontAlign> dists;
|
|
|
|
// Eigen::Matrix<int, Eigen::Dynamic, 1, Eigen::DontAlign> I;
|
2018-11-02 10:57:57 +00:00
|
|
|
PointSet C;
|
2018-11-08 16:15:10 +00:00
|
|
|
|
2018-11-02 10:57:57 +00:00
|
|
|
igl::point_mesh_squared_distance( points, mesh.V, mesh.F, dists, I, C);
|
|
|
|
|
|
|
|
PointSet ret(I.rows(), 3);
|
|
|
|
for(int i = 0; i < I.rows(); i++) {
|
|
|
|
auto idx = I(i);
|
|
|
|
auto trindex = mesh.F.row(idx);
|
|
|
|
|
|
|
|
auto& p1 = mesh.V.row(trindex(0));
|
|
|
|
auto& p2 = mesh.V.row(trindex(1));
|
|
|
|
auto& p3 = mesh.V.row(trindex(2));
|
|
|
|
|
|
|
|
Eigen::Vector3d U = p2 - p1;
|
|
|
|
Eigen::Vector3d V = p3 - p1;
|
|
|
|
ret.row(i) = U.cross(V).normalized();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2018-11-23 09:28:26 +00:00
|
|
|
#else // TODO: do something on 32 bit windows
|
2018-11-08 16:15:10 +00:00
|
|
|
return {};
|
|
|
|
#endif
|
2018-11-02 10:57:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
double ray_mesh_intersect(const Vec3d& s,
|
|
|
|
const Vec3d& dir,
|
|
|
|
const EigenMesh3D& m)
|
|
|
|
{
|
|
|
|
igl::Hit hit;
|
|
|
|
hit.t = std::numeric_limits<float>::infinity();
|
|
|
|
igl::ray_mesh_intersect(s, dir, m.V, m.F, hit);
|
|
|
|
return hit.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clustering a set of points by the given criteria
|
|
|
|
ClusteredPoints cluster(
|
|
|
|
const sla::PointSet& points,
|
|
|
|
std::function<bool(const SpatElement&, const SpatElement&)> pred,
|
|
|
|
unsigned max_points = 0)
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace bgi = boost::geometry::index;
|
|
|
|
using Index3D = bgi::rtree< SpatElement, bgi::rstar<16, 4> /* ? */ >;
|
|
|
|
|
|
|
|
// A spatial index for querying the nearest points
|
|
|
|
Index3D sindex;
|
|
|
|
|
|
|
|
// Build the index
|
|
|
|
for(unsigned idx = 0; idx < points.rows(); idx++)
|
|
|
|
sindex.insert( std::make_pair(points.row(idx), idx));
|
|
|
|
|
|
|
|
using Elems = std::vector<SpatElement>;
|
|
|
|
|
|
|
|
// Recursive function for visiting all the points in a given distance to
|
|
|
|
// each other
|
|
|
|
std::function<void(Elems&, Elems&)> group =
|
|
|
|
[&sindex, &group, pred, max_points](Elems& pts, Elems& cluster)
|
|
|
|
{
|
|
|
|
for(auto& p : pts) {
|
|
|
|
std::vector<SpatElement> tmp;
|
|
|
|
|
|
|
|
sindex.query(
|
|
|
|
bgi::satisfies([p, pred](const SpatElement& se) {
|
|
|
|
return pred(p, se);
|
|
|
|
}),
|
|
|
|
std::back_inserter(tmp)
|
|
|
|
);
|
|
|
|
|
|
|
|
auto cmp = [](const SpatElement& e1, const SpatElement& e2){
|
|
|
|
return e1.second < e2.second;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::sort(tmp.begin(), tmp.end(), cmp);
|
|
|
|
|
|
|
|
Elems newpts;
|
|
|
|
std::set_difference(tmp.begin(), tmp.end(),
|
|
|
|
cluster.begin(), cluster.end(),
|
|
|
|
std::back_inserter(newpts), cmp);
|
|
|
|
|
|
|
|
int c = max_points && newpts.size() + cluster.size() > max_points?
|
|
|
|
int(max_points - cluster.size()) : int(newpts.size());
|
|
|
|
|
|
|
|
cluster.insert(cluster.end(), newpts.begin(), newpts.begin() + c);
|
|
|
|
std::sort(cluster.begin(), cluster.end(), cmp);
|
|
|
|
|
|
|
|
if(!newpts.empty() && (!max_points || cluster.size() < max_points))
|
|
|
|
group(newpts, cluster);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<Elems> clusters;
|
|
|
|
for(auto it = sindex.begin(); it != sindex.end();) {
|
|
|
|
Elems cluster = {};
|
|
|
|
Elems pts = {*it};
|
|
|
|
group(pts, cluster);
|
|
|
|
|
|
|
|
for(auto& c : cluster) sindex.remove(c);
|
|
|
|
it = sindex.begin();
|
|
|
|
|
|
|
|
clusters.emplace_back(cluster);
|
|
|
|
}
|
|
|
|
|
|
|
|
ClusteredPoints result;
|
|
|
|
for(auto& cluster : clusters) {
|
|
|
|
result.emplace_back();
|
|
|
|
for(auto c : cluster) result.back().emplace_back(c.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
using Segments = std::vector<std::pair<Vec2d, Vec2d>>;
|
|
|
|
|
|
|
|
Segments model_boundary(const EigenMesh3D& emesh, double offs)
|
|
|
|
{
|
|
|
|
Segments ret;
|
|
|
|
Polygons pp;
|
|
|
|
pp.reserve(emesh.F.rows());
|
|
|
|
|
|
|
|
for (int i = 0; i < emesh.F.rows(); i++) {
|
|
|
|
auto trindex = emesh.F.row(i);
|
|
|
|
auto& p1 = emesh.V.row(trindex(0));
|
|
|
|
auto& p2 = emesh.V.row(trindex(1));
|
|
|
|
auto& p3 = emesh.V.row(trindex(2));
|
|
|
|
|
|
|
|
Polygon p;
|
|
|
|
p.points.resize(3);
|
|
|
|
p.points[0] = Point::new_scale(p1(X), p1(Y));
|
|
|
|
p.points[1] = Point::new_scale(p2(X), p2(Y));
|
|
|
|
p.points[2] = Point::new_scale(p3(X), p3(Y));
|
|
|
|
p.make_counter_clockwise();
|
|
|
|
pp.emplace_back(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
ExPolygons merged = union_ex(offset(pp, float(scale_(offs))), true);
|
|
|
|
|
|
|
|
for(auto& expoly : merged) {
|
|
|
|
auto lines = expoly.lines();
|
|
|
|
for(Line& l : lines) {
|
|
|
|
Vec2d a(l.a(X) * SCALING_FACTOR, l.a(Y) * SCALING_FACTOR);
|
|
|
|
Vec2d b(l.b(X) * SCALING_FACTOR, l.b(Y) * SCALING_FACTOR);
|
|
|
|
ret.emplace_back(std::make_pair(a, b));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
//struct SegmentIndex {
|
|
|
|
|
|
|
|
//};
|
|
|
|
|
|
|
|
//using SegmentIndexEl = std::pair<Segment, unsigned>;
|
|
|
|
|
|
|
|
//SegmentIndexEl
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|