2016-09-30 13:23:18 +00:00
|
|
|
#include "BoundingBox.hpp"
|
2013-07-16 19:04:14 +00:00
|
|
|
#include "Polyline.hpp"
|
2015-01-06 19:52:36 +00:00
|
|
|
#include "ExPolygon.hpp"
|
|
|
|
#include "ExPolygonCollection.hpp"
|
2014-11-15 21:41:22 +00:00
|
|
|
#include "Line.hpp"
|
2013-11-21 16:53:50 +00:00
|
|
|
#include "Polygon.hpp"
|
2014-11-15 22:06:15 +00:00
|
|
|
#include <iostream>
|
2016-03-20 19:20:32 +00:00
|
|
|
#include <utility>
|
2013-07-16 19:04:14 +00:00
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
2013-11-21 16:53:50 +00:00
|
|
|
Polyline::operator Polylines() const
|
|
|
|
{
|
2014-01-16 18:02:50 +00:00
|
|
|
Polylines polylines;
|
2013-11-21 16:53:50 +00:00
|
|
|
polylines.push_back(*this);
|
|
|
|
return polylines;
|
|
|
|
}
|
|
|
|
|
2014-11-15 21:41:22 +00:00
|
|
|
Polyline::operator Line() const
|
|
|
|
{
|
|
|
|
if (this->points.size() > 2) CONFESS("Can't convert polyline with more than two points to a line");
|
|
|
|
return Line(this->points.front(), this->points.back());
|
|
|
|
}
|
|
|
|
|
2014-04-24 14:40:10 +00:00
|
|
|
Point
|
2013-09-02 18:22:20 +00:00
|
|
|
Polyline::last_point() const
|
|
|
|
{
|
2014-04-24 14:40:10 +00:00
|
|
|
return this->points.back();
|
|
|
|
}
|
|
|
|
|
|
|
|
Point
|
|
|
|
Polyline::leftmost_point() const
|
|
|
|
{
|
|
|
|
Point p = this->points.front();
|
|
|
|
for (Points::const_iterator it = this->points.begin() + 1; it != this->points.end(); ++it) {
|
2018-08-17 13:53:43 +00:00
|
|
|
if ((*it)(0) < p(0)) p = *it;
|
2014-04-24 14:40:10 +00:00
|
|
|
}
|
|
|
|
return p;
|
2013-09-02 18:22:20 +00:00
|
|
|
}
|
|
|
|
|
2013-09-13 13:19:15 +00:00
|
|
|
Lines
|
|
|
|
Polyline::lines() const
|
2013-07-16 19:04:14 +00:00
|
|
|
{
|
2013-09-13 13:19:15 +00:00
|
|
|
Lines lines;
|
2014-05-13 18:06:01 +00:00
|
|
|
if (this->points.size() >= 2) {
|
|
|
|
lines.reserve(this->points.size() - 1);
|
|
|
|
for (Points::const_iterator it = this->points.begin(); it != this->points.end()-1; ++it) {
|
|
|
|
lines.push_back(Line(*it, *(it + 1)));
|
|
|
|
}
|
2013-07-16 19:04:14 +00:00
|
|
|
}
|
2013-09-13 13:19:15 +00:00
|
|
|
return lines;
|
2013-07-16 19:04:14 +00:00
|
|
|
}
|
|
|
|
|
2013-10-27 21:57:25 +00:00
|
|
|
// removes the given distance from the end of the polyline
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
void Polyline::clip_end(double distance)
|
2013-10-27 21:57:25 +00:00
|
|
|
{
|
|
|
|
while (distance > 0) {
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
Vec2d last_point = this->last_point().cast<double>();
|
2013-10-27 21:57:25 +00:00
|
|
|
this->points.pop_back();
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
if (this->points.empty())
|
|
|
|
break;
|
|
|
|
Vec2d v = this->last_point().cast<double>() - last_point;
|
|
|
|
double lsqr = v.squaredNorm();
|
|
|
|
if (lsqr > distance * distance) {
|
|
|
|
this->points.emplace_back((last_point + v * (distance / sqrt(lsqr))).cast<coord_t>());
|
|
|
|
return;
|
2013-10-27 21:57:25 +00:00
|
|
|
}
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
distance -= sqrt(lsqr);
|
2013-10-27 21:57:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-06 18:30:45 +00:00
|
|
|
// removes the given distance from the start of the polyline
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
void Polyline::clip_start(double distance)
|
2013-11-06 18:30:45 +00:00
|
|
|
{
|
|
|
|
this->reverse();
|
|
|
|
this->clip_end(distance);
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
if (this->points.size() >= 2)
|
|
|
|
this->reverse();
|
2013-11-06 18:30:45 +00:00
|
|
|
}
|
|
|
|
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
void Polyline::extend_end(double distance)
|
2014-03-15 15:53:20 +00:00
|
|
|
{
|
|
|
|
// relocate last point by extending the last segment by the specified length
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
Vec2d v = (this->points.back() - *(this->points.end() - 2)).cast<double>().normalized();
|
|
|
|
this->points.back() += (v * distance).cast<coord_t>();
|
2014-03-15 15:53:20 +00:00
|
|
|
}
|
|
|
|
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
void Polyline::extend_start(double distance)
|
2014-03-15 15:53:20 +00:00
|
|
|
{
|
|
|
|
// relocate first point by extending the first segment by the specified length
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
Vec2d v = (this->points.front() - this->points[1]).cast<double>().normalized();
|
|
|
|
this->points.front() += (v * distance).cast<coord_t>();
|
2014-03-15 15:53:20 +00:00
|
|
|
}
|
|
|
|
|
2013-11-11 19:59:58 +00:00
|
|
|
/* this method returns a collection of points picked on the polygon contour
|
|
|
|
so that they are evenly spaced according to the input distance */
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
Points Polyline::equally_spaced_points(double distance) const
|
2013-11-11 19:59:58 +00:00
|
|
|
{
|
2015-01-19 17:53:04 +00:00
|
|
|
Points points;
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
points.emplace_back(this->first_point());
|
2013-11-11 19:59:58 +00:00
|
|
|
double len = 0;
|
|
|
|
|
|
|
|
for (Points::const_iterator it = this->points.begin() + 1; it != this->points.end(); ++it) {
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
Vec2d p1 = (it-1)->cast<double>();
|
|
|
|
Vec2d v = it->cast<double>() - p1;
|
|
|
|
double segment_length = v.norm();
|
2013-11-11 19:59:58 +00:00
|
|
|
len += segment_length;
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
if (len < distance)
|
|
|
|
continue;
|
2013-11-11 19:59:58 +00:00
|
|
|
if (len == distance) {
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
points.emplace_back(*it);
|
2013-11-11 19:59:58 +00:00
|
|
|
len = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
double take = segment_length - (len - distance); // how much we take of this segment
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
points.emplace_back((p1 + v * (take / v.norm())).cast<coord_t>());
|
|
|
|
-- it;
|
|
|
|
len = - take;
|
2013-11-11 19:59:58 +00:00
|
|
|
}
|
2015-01-19 17:53:04 +00:00
|
|
|
return points;
|
2013-11-11 19:59:58 +00:00
|
|
|
}
|
|
|
|
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
void Polyline::simplify(double tolerance)
|
2013-11-22 01:16:10 +00:00
|
|
|
{
|
|
|
|
this->points = MultiPoint::_douglas_peucker(this->points, tolerance);
|
|
|
|
}
|
|
|
|
|
2015-01-06 19:52:36 +00:00
|
|
|
/* This method simplifies all *lines* contained in the supplied area */
|
|
|
|
template <class T>
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
void Polyline::simplify_by_visibility(const T &area)
|
2015-01-06 19:52:36 +00:00
|
|
|
{
|
|
|
|
Points &pp = this->points;
|
|
|
|
|
2015-05-18 17:28:59 +00:00
|
|
|
size_t s = 0;
|
2015-12-21 13:46:35 +00:00
|
|
|
bool did_erase = false;
|
|
|
|
for (size_t i = s+2; i < pp.size(); i = s + 2) {
|
|
|
|
if (area.contains(Line(pp[s], pp[i]))) {
|
|
|
|
pp.erase(pp.begin() + s + 1, pp.begin() + i);
|
|
|
|
did_erase = true;
|
2015-05-18 17:28:59 +00:00
|
|
|
} else {
|
2015-12-21 13:46:35 +00:00
|
|
|
++s;
|
2015-01-06 19:52:36 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-21 13:46:35 +00:00
|
|
|
if (did_erase)
|
|
|
|
this->simplify_by_visibility(area);
|
2015-01-06 19:52:36 +00:00
|
|
|
}
|
2015-01-06 20:29:32 +00:00
|
|
|
template void Polyline::simplify_by_visibility<ExPolygon>(const ExPolygon &area);
|
2015-01-06 19:52:36 +00:00
|
|
|
template void Polyline::simplify_by_visibility<ExPolygonCollection>(const ExPolygonCollection &area);
|
|
|
|
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
void Polyline::split_at(const Point &point, Polyline* p1, Polyline* p2) const
|
2014-05-22 10:28:12 +00:00
|
|
|
{
|
|
|
|
if (this->points.empty()) return;
|
|
|
|
|
|
|
|
// find the line to split at
|
|
|
|
size_t line_idx = 0;
|
|
|
|
Point p = this->first_point();
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
double min = (p - point).cast<double>().norm();
|
2014-05-22 10:28:12 +00:00
|
|
|
Lines lines = this->lines();
|
|
|
|
for (Lines::const_iterator line = lines.begin(); line != lines.end(); ++line) {
|
|
|
|
Point p_tmp = point.projection_onto(*line);
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
if ((p_tmp - point).cast<double>().norm() < min) {
|
2014-05-22 10:28:12 +00:00
|
|
|
p = p_tmp;
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
min = (p - point).cast<double>().norm();
|
2014-05-22 10:28:12 +00:00
|
|
|
line_idx = line - lines.begin();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// create first half
|
|
|
|
p1->points.clear();
|
2018-08-15 11:51:40 +00:00
|
|
|
for (Lines::const_iterator line = lines.begin(); line != lines.begin() + line_idx + 1; ++line)
|
|
|
|
if (line->a != p)
|
|
|
|
p1->points.push_back(line->a);
|
2014-05-22 10:28:12 +00:00
|
|
|
// we add point instead of p because they might differ because of numerical issues
|
|
|
|
// and caller might want to rely on point belonging to result polylines
|
|
|
|
p1->points.push_back(point);
|
|
|
|
|
|
|
|
// create second half
|
|
|
|
p2->points.clear();
|
|
|
|
p2->points.push_back(point);
|
|
|
|
for (Lines::const_iterator line = lines.begin() + line_idx; line != lines.end(); ++line) {
|
2015-01-05 14:51:57 +00:00
|
|
|
p2->points.push_back(line->b);
|
2014-05-22 10:28:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
bool Polyline::is_straight() const
|
2014-11-15 22:06:15 +00:00
|
|
|
{
|
|
|
|
/* Check that each segment's direction is equal to the line connecting
|
|
|
|
first point and last point. (Checking each line against the previous
|
|
|
|
one would cause the error to accumulate.) */
|
|
|
|
double dir = Line(this->first_point(), this->last_point()).direction();
|
|
|
|
|
|
|
|
Lines lines = this->lines();
|
|
|
|
for (Lines::const_iterator line = lines.begin(); line != lines.end(); ++line) {
|
|
|
|
if (!line->parallel_to(dir)) return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-09-30 13:23:18 +00:00
|
|
|
BoundingBox get_extents(const Polyline &polyline)
|
|
|
|
{
|
|
|
|
return polyline.bounding_box();
|
|
|
|
}
|
|
|
|
|
|
|
|
BoundingBox get_extents(const Polylines &polylines)
|
|
|
|
{
|
|
|
|
BoundingBox bb;
|
|
|
|
if (! polylines.empty()) {
|
|
|
|
bb = polylines.front().bounding_box();
|
|
|
|
for (size_t i = 1; i < polylines.size(); ++ i)
|
|
|
|
bb.merge(polylines[i]);
|
|
|
|
}
|
|
|
|
return bb;
|
|
|
|
}
|
|
|
|
|
2017-01-25 17:23:57 +00:00
|
|
|
bool remove_degenerate(Polylines &polylines)
|
|
|
|
{
|
|
|
|
bool modified = false;
|
|
|
|
size_t j = 0;
|
|
|
|
for (size_t i = 0; i < polylines.size(); ++ i) {
|
|
|
|
if (polylines[i].points.size() >= 2) {
|
|
|
|
if (j < i)
|
|
|
|
std::swap(polylines[i].points, polylines[j].points);
|
|
|
|
++ j;
|
|
|
|
} else
|
|
|
|
modified = true;
|
|
|
|
}
|
|
|
|
if (j < polylines.size())
|
|
|
|
polylines.erase(polylines.begin() + j, polylines.end());
|
|
|
|
return modified;
|
|
|
|
}
|
|
|
|
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
ThickLines ThickPolyline::thicklines() const
|
2016-03-19 14:33:58 +00:00
|
|
|
{
|
|
|
|
ThickLines lines;
|
|
|
|
if (this->points.size() >= 2) {
|
|
|
|
lines.reserve(this->points.size() - 1);
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
for (size_t i = 0; i + 1 < this->points.size(); ++ i)
|
|
|
|
lines.emplace_back(this->points[i], this->points[i + 1], this->width[2 * i], this->width[2 * i + 1]);
|
2016-03-19 14:33:58 +00:00
|
|
|
}
|
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
|
2018-01-08 12:44:10 +00:00
|
|
|
Lines3 Polyline3::lines() const
|
|
|
|
{
|
|
|
|
Lines3 lines;
|
|
|
|
if (points.size() >= 2)
|
|
|
|
{
|
|
|
|
lines.reserve(points.size() - 1);
|
|
|
|
for (Points3::const_iterator it = points.begin(); it != points.end() - 1; ++it)
|
|
|
|
{
|
|
|
|
lines.emplace_back(*it, *(it + 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
|
2013-07-16 19:04:14 +00:00
|
|
|
}
|