2014-04-28 18:14:20 +00:00
|
|
|
#include "BoundingBox.hpp"
|
2013-07-16 19:04:14 +00:00
|
|
|
#include "ExPolygon.hpp"
|
2014-01-09 18:56:12 +00:00
|
|
|
#include "Geometry.hpp"
|
2013-07-16 19:04:14 +00:00
|
|
|
#include "Polygon.hpp"
|
2014-01-09 16:26:39 +00:00
|
|
|
#include "Line.hpp"
|
2013-11-21 14:12:06 +00:00
|
|
|
#include "ClipperUtils.hpp"
|
2014-04-25 10:40:21 +00:00
|
|
|
#include "polypartition.h"
|
2014-05-01 10:07:11 +00:00
|
|
|
#include "poly2tri/poly2tri.h"
|
2014-04-25 10:40:21 +00:00
|
|
|
|
2014-04-28 18:14:20 +00:00
|
|
|
#include <algorithm>
|
2014-04-25 10:40:21 +00:00
|
|
|
#include <list>
|
2013-07-16 19:04:14 +00:00
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
2014-01-09 16:26:39 +00:00
|
|
|
ExPolygon::operator Points() const
|
|
|
|
{
|
|
|
|
Points points;
|
|
|
|
Polygons pp = *this;
|
|
|
|
for (Polygons::const_iterator poly = pp.begin(); poly != pp.end(); ++poly) {
|
|
|
|
for (Points::const_iterator point = poly->points.begin(); point != poly->points.end(); ++point)
|
|
|
|
points.push_back(*point);
|
|
|
|
}
|
|
|
|
return points;
|
|
|
|
}
|
|
|
|
|
2013-11-21 14:12:06 +00:00
|
|
|
ExPolygon::operator Polygons() const
|
|
|
|
{
|
2014-01-09 16:26:39 +00:00
|
|
|
Polygons polygons;
|
2014-01-16 18:02:50 +00:00
|
|
|
polygons.reserve(this->holes.size() + 1);
|
2013-11-21 14:12:06 +00:00
|
|
|
polygons.push_back(this->contour);
|
|
|
|
for (Polygons::const_iterator it = this->holes.begin(); it != this->holes.end(); ++it) {
|
|
|
|
polygons.push_back(*it);
|
|
|
|
}
|
|
|
|
return polygons;
|
|
|
|
}
|
|
|
|
|
2013-07-16 19:04:14 +00:00
|
|
|
void
|
|
|
|
ExPolygon::scale(double factor)
|
|
|
|
{
|
|
|
|
contour.scale(factor);
|
|
|
|
for (Polygons::iterator it = holes.begin(); it != holes.end(); ++it) {
|
|
|
|
(*it).scale(factor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ExPolygon::translate(double x, double y)
|
|
|
|
{
|
|
|
|
contour.translate(x, y);
|
|
|
|
for (Polygons::iterator it = holes.begin(); it != holes.end(); ++it) {
|
|
|
|
(*it).translate(x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-04-24 11:43:24 +00:00
|
|
|
ExPolygon::rotate(double angle, const Point ¢er)
|
2013-07-16 19:04:14 +00:00
|
|
|
{
|
|
|
|
contour.rotate(angle, center);
|
|
|
|
for (Polygons::iterator it = holes.begin(); it != holes.end(); ++it) {
|
|
|
|
(*it).rotate(angle, center);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-26 20:50:26 +00:00
|
|
|
double
|
|
|
|
ExPolygon::area() const
|
|
|
|
{
|
|
|
|
double a = this->contour.area();
|
|
|
|
for (Polygons::const_iterator it = this->holes.begin(); it != this->holes.end(); ++it) {
|
|
|
|
a -= -(*it).area(); // holes have negative area
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2013-08-26 21:27:51 +00:00
|
|
|
bool
|
|
|
|
ExPolygon::is_valid() const
|
|
|
|
{
|
|
|
|
if (!this->contour.is_valid() || !this->contour.is_counter_clockwise()) return false;
|
|
|
|
for (Polygons::const_iterator it = this->holes.begin(); it != this->holes.end(); ++it) {
|
|
|
|
if (!(*it).is_valid() || (*it).is_counter_clockwise()) return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-21 14:12:06 +00:00
|
|
|
bool
|
2014-11-23 19:14:13 +00:00
|
|
|
ExPolygon::contains(const Line &line) const
|
2013-11-21 14:12:06 +00:00
|
|
|
{
|
2014-11-23 19:14:13 +00:00
|
|
|
return this->contains((Polyline)line);
|
2014-05-13 18:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2014-11-23 19:14:13 +00:00
|
|
|
ExPolygon::contains(const Polyline &polyline) const
|
2014-05-13 18:06:01 +00:00
|
|
|
{
|
2013-11-21 14:12:06 +00:00
|
|
|
Polylines pl_out;
|
2014-11-15 22:44:03 +00:00
|
|
|
diff((Polylines)polyline, *this, &pl_out);
|
2013-11-21 14:12:06 +00:00
|
|
|
return pl_out.empty();
|
|
|
|
}
|
|
|
|
|
2013-11-21 15:21:42 +00:00
|
|
|
bool
|
2014-11-23 19:14:13 +00:00
|
|
|
ExPolygon::contains(const Point &point) const
|
2013-11-21 15:21:42 +00:00
|
|
|
{
|
2014-11-23 19:14:13 +00:00
|
|
|
if (!this->contour.contains(point)) return false;
|
2013-11-21 15:21:42 +00:00
|
|
|
for (Polygons::const_iterator it = this->holes.begin(); it != this->holes.end(); ++it) {
|
2014-11-23 19:14:13 +00:00
|
|
|
if (it->contains(point)) return false;
|
2013-11-21 15:21:42 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-06 19:52:36 +00:00
|
|
|
// inclusive version of contains() that also checks whether point is on boundaries
|
|
|
|
bool
|
|
|
|
ExPolygon::contains_b(const Point &point) const
|
|
|
|
{
|
|
|
|
return this->contains(point) || this->has_boundary_point(point);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ExPolygon::has_boundary_point(const Point &point) const
|
|
|
|
{
|
|
|
|
if (this->contour.has_boundary_point(point)) return true;
|
|
|
|
for (Polygons::const_iterator h = this->holes.begin(); h != this->holes.end(); ++h) {
|
|
|
|
if (h->has_boundary_point(point)) return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-07-06 23:17:31 +00:00
|
|
|
void
|
|
|
|
ExPolygon::simplify_p(double tolerance, Polygons* polygons) const
|
|
|
|
{
|
|
|
|
Polygons pp = this->simplify_p(tolerance);
|
|
|
|
polygons->insert(polygons->end(), pp.begin(), pp.end());
|
|
|
|
}
|
|
|
|
|
2013-11-21 19:25:24 +00:00
|
|
|
Polygons
|
2013-11-22 01:16:10 +00:00
|
|
|
ExPolygon::simplify_p(double tolerance) const
|
2013-11-21 19:25:24 +00:00
|
|
|
{
|
2014-01-16 18:02:50 +00:00
|
|
|
Polygons pp;
|
|
|
|
pp.reserve(this->holes.size() + 1);
|
2013-11-22 01:16:10 +00:00
|
|
|
|
|
|
|
// contour
|
2015-01-30 17:33:20 +00:00
|
|
|
{
|
|
|
|
Polygon p = this->contour;
|
|
|
|
p.points.push_back(p.points.front());
|
|
|
|
p.points = MultiPoint::_douglas_peucker(p.points, tolerance);
|
|
|
|
p.points.pop_back();
|
|
|
|
pp.push_back(p);
|
|
|
|
}
|
2013-11-22 01:16:10 +00:00
|
|
|
|
|
|
|
// holes
|
|
|
|
for (Polygons::const_iterator it = this->holes.begin(); it != this->holes.end(); ++it) {
|
2015-01-30 17:33:20 +00:00
|
|
|
Polygon p = *it;
|
|
|
|
p.points.push_back(p.points.front());
|
2013-11-22 01:16:10 +00:00
|
|
|
p.points = MultiPoint::_douglas_peucker(p.points, tolerance);
|
2015-01-30 17:33:20 +00:00
|
|
|
p.points.pop_back();
|
2013-11-22 01:16:10 +00:00
|
|
|
pp.push_back(p);
|
|
|
|
}
|
2014-11-15 22:44:03 +00:00
|
|
|
simplify_polygons(pp, &pp);
|
2013-11-22 01:16:10 +00:00
|
|
|
return pp;
|
2013-11-21 19:25:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ExPolygons
|
|
|
|
ExPolygon::simplify(double tolerance) const
|
|
|
|
{
|
2013-11-22 01:16:10 +00:00
|
|
|
Polygons pp = this->simplify_p(tolerance);
|
|
|
|
ExPolygons expp;
|
2014-11-15 22:44:03 +00:00
|
|
|
union_(pp, &expp);
|
2013-11-22 01:16:10 +00:00
|
|
|
return expp;
|
2013-11-21 19:25:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ExPolygon::simplify(double tolerance, ExPolygons &expolygons) const
|
|
|
|
{
|
|
|
|
ExPolygons ep = this->simplify(tolerance);
|
|
|
|
expolygons.reserve(expolygons.size() + ep.size());
|
|
|
|
expolygons.insert(expolygons.end(), ep.begin(), ep.end());
|
|
|
|
}
|
|
|
|
|
2014-01-09 16:26:39 +00:00
|
|
|
void
|
2014-03-09 16:46:02 +00:00
|
|
|
ExPolygon::medial_axis(double max_width, double min_width, Polylines* polylines) const
|
2014-01-09 16:26:39 +00:00
|
|
|
{
|
2014-01-09 18:56:12 +00:00
|
|
|
// init helper object
|
2014-03-09 16:46:02 +00:00
|
|
|
Slic3r::Geometry::MedialAxis ma(max_width, min_width);
|
2014-01-09 18:56:12 +00:00
|
|
|
|
2014-01-09 16:26:39 +00:00
|
|
|
// populate list of segments for the Voronoi diagram
|
2015-01-19 17:53:04 +00:00
|
|
|
ma.lines = this->contour.lines();
|
|
|
|
for (Polygons::const_iterator hole = this->holes.begin(); hole != this->holes.end(); ++hole) {
|
|
|
|
Lines lines = hole->lines();
|
|
|
|
ma.lines.insert(ma.lines.end(), lines.begin(), lines.end());
|
|
|
|
}
|
2014-01-09 16:26:39 +00:00
|
|
|
|
|
|
|
// compute the Voronoi diagram
|
2015-07-23 13:53:02 +00:00
|
|
|
Polylines pp;
|
|
|
|
ma.build(&pp);
|
2014-01-09 16:26:39 +00:00
|
|
|
|
2014-07-23 14:32:31 +00:00
|
|
|
// clip segments to our expolygon area
|
|
|
|
// (do this before extending endpoints as external segments coule be extended into
|
|
|
|
// expolygon, this leaving wrong things inside)
|
2015-07-23 13:53:02 +00:00
|
|
|
pp = intersection(pp, *this);
|
2014-07-23 14:32:31 +00:00
|
|
|
|
2014-03-15 15:53:20 +00:00
|
|
|
// extend initial and final segments of each polyline (they will be clipped)
|
2014-05-21 13:03:31 +00:00
|
|
|
// unless they represent closed loops
|
2015-07-23 13:53:02 +00:00
|
|
|
for (Polylines::iterator polyline = pp.begin(); polyline != pp.end(); ++polyline) {
|
2014-07-23 14:32:31 +00:00
|
|
|
if (polyline->points.front().distance_to(polyline->points.back()) < min_width) continue;
|
2015-05-21 23:46:01 +00:00
|
|
|
// TODO: we should *not* extend endpoints where other polylines start/end
|
|
|
|
// (such as T joints, which are returned as three polylines by MedialAxis)
|
2014-03-15 15:53:20 +00:00
|
|
|
polyline->extend_start(max_width);
|
|
|
|
polyline->extend_end(max_width);
|
|
|
|
}
|
|
|
|
|
2014-07-23 14:32:31 +00:00
|
|
|
// clip again after extending endpoints to prevent them from exceeding the expolygon boundaries
|
2015-07-23 13:53:02 +00:00
|
|
|
pp = intersection(pp, *this);
|
2015-05-21 23:46:01 +00:00
|
|
|
|
|
|
|
// remove too short polylines
|
|
|
|
// (we can't do this check before endpoints extension and clipping because we don't
|
|
|
|
// know how long will the endpoints be extended since it depends on polygon thickness
|
|
|
|
// which is variable - extension will be <= max_width/2 on each side)
|
2015-07-23 13:53:02 +00:00
|
|
|
for (size_t i = 0; i < pp.size(); ++i) {
|
|
|
|
if (pp[i].length() < max_width) {
|
|
|
|
pp.erase(pp.begin() + i);
|
2015-05-21 23:46:01 +00:00
|
|
|
--i;
|
|
|
|
}
|
|
|
|
}
|
2015-07-23 13:53:02 +00:00
|
|
|
|
|
|
|
polylines->insert(polylines->end(), pp.begin(), pp.end());
|
2014-01-09 16:26:39 +00:00
|
|
|
}
|
|
|
|
|
2014-04-24 11:43:24 +00:00
|
|
|
void
|
|
|
|
ExPolygon::get_trapezoids(Polygons* polygons) const
|
|
|
|
{
|
|
|
|
ExPolygons expp;
|
|
|
|
expp.push_back(*this);
|
|
|
|
boost::polygon::get_trapezoids(*polygons, expp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ExPolygon::get_trapezoids(Polygons* polygons, double angle) const
|
|
|
|
{
|
|
|
|
ExPolygon clone = *this;
|
|
|
|
clone.rotate(PI/2 - angle, Point(0,0));
|
|
|
|
clone.get_trapezoids(polygons);
|
|
|
|
for (Polygons::iterator polygon = polygons->begin(); polygon != polygons->end(); ++polygon)
|
|
|
|
polygon->rotate(-(PI/2 - angle), Point(0,0));
|
|
|
|
}
|
|
|
|
|
2014-04-28 18:14:20 +00:00
|
|
|
// This algorithm may return more trapezoids than necessary
|
|
|
|
// (i.e. it may break a single trapezoid in several because
|
|
|
|
// other parts of the object have x coordinates in the middle)
|
|
|
|
void
|
|
|
|
ExPolygon::get_trapezoids2(Polygons* polygons) const
|
|
|
|
{
|
|
|
|
// get all points of this ExPolygon
|
|
|
|
Points pp = *this;
|
|
|
|
|
|
|
|
// build our bounding box
|
|
|
|
BoundingBox bb(pp);
|
|
|
|
|
|
|
|
// get all x coordinates
|
|
|
|
std::vector<coord_t> xx;
|
|
|
|
xx.reserve(pp.size());
|
|
|
|
for (Points::const_iterator p = pp.begin(); p != pp.end(); ++p)
|
|
|
|
xx.push_back(p->x);
|
|
|
|
std::sort(xx.begin(), xx.end());
|
|
|
|
|
|
|
|
// find trapezoids by looping from first to next-to-last coordinate
|
|
|
|
for (std::vector<coord_t>::const_iterator x = xx.begin(); x != xx.end()-1; ++x) {
|
|
|
|
coord_t next_x = *(x + 1);
|
|
|
|
if (*x == next_x) continue;
|
|
|
|
|
|
|
|
// build rectangle
|
|
|
|
Polygon poly;
|
|
|
|
poly.points.resize(4);
|
|
|
|
poly[0].x = *x;
|
|
|
|
poly[0].y = bb.min.y;
|
|
|
|
poly[1].x = next_x;
|
|
|
|
poly[1].y = bb.min.y;
|
|
|
|
poly[2].x = next_x;
|
|
|
|
poly[2].y = bb.max.y;
|
|
|
|
poly[3].x = *x;
|
|
|
|
poly[3].y = bb.max.y;
|
|
|
|
|
|
|
|
// intersect with this expolygon
|
|
|
|
Polygons trapezoids;
|
2014-11-15 22:44:03 +00:00
|
|
|
intersection<Polygons,Polygons>(poly, *this, &trapezoids);
|
2014-04-28 18:14:20 +00:00
|
|
|
|
|
|
|
// append results to return value
|
|
|
|
polygons->insert(polygons->end(), trapezoids.begin(), trapezoids.end());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ExPolygon::get_trapezoids2(Polygons* polygons, double angle) const
|
|
|
|
{
|
|
|
|
ExPolygon clone = *this;
|
|
|
|
clone.rotate(PI/2 - angle, Point(0,0));
|
|
|
|
clone.get_trapezoids2(polygons);
|
|
|
|
for (Polygons::iterator polygon = polygons->begin(); polygon != polygons->end(); ++polygon)
|
|
|
|
polygon->rotate(-(PI/2 - angle), Point(0,0));
|
|
|
|
}
|
|
|
|
|
2014-05-01 08:37:38 +00:00
|
|
|
// While this triangulates successfully, it's NOT a constrained triangulation
|
|
|
|
// as it will create more vertices on the boundaries than the ones supplied.
|
2014-04-24 15:06:16 +00:00
|
|
|
void
|
|
|
|
ExPolygon::triangulate(Polygons* polygons) const
|
|
|
|
{
|
|
|
|
// first make trapezoids
|
|
|
|
Polygons trapezoids;
|
2014-04-28 18:19:26 +00:00
|
|
|
this->get_trapezoids2(&trapezoids);
|
2014-04-24 15:06:16 +00:00
|
|
|
|
|
|
|
// then triangulate each trapezoid
|
|
|
|
for (Polygons::iterator polygon = trapezoids.begin(); polygon != trapezoids.end(); ++polygon)
|
|
|
|
polygon->triangulate_convex(polygons);
|
|
|
|
}
|
|
|
|
|
2014-04-25 10:40:21 +00:00
|
|
|
void
|
2014-05-01 08:37:38 +00:00
|
|
|
ExPolygon::triangulate_pp(Polygons* polygons) const
|
2014-04-25 10:40:21 +00:00
|
|
|
{
|
|
|
|
// convert polygons
|
|
|
|
std::list<TPPLPoly> input;
|
|
|
|
|
2014-05-01 08:37:38 +00:00
|
|
|
Polygons pp = *this;
|
2014-11-15 22:44:03 +00:00
|
|
|
simplify_polygons(pp, &pp, true);
|
2014-05-01 08:37:38 +00:00
|
|
|
ExPolygons expp;
|
2014-11-15 22:44:03 +00:00
|
|
|
union_(pp, &expp);
|
2014-05-01 08:37:38 +00:00
|
|
|
|
|
|
|
for (ExPolygons::const_iterator ex = expp.begin(); ex != expp.end(); ++ex) {
|
|
|
|
// contour
|
|
|
|
{
|
|
|
|
TPPLPoly p;
|
|
|
|
p.Init(ex->contour.points.size());
|
|
|
|
//printf("%zu\n0\n", ex->contour.points.size());
|
|
|
|
for (Points::const_iterator point = ex->contour.points.begin(); point != ex->contour.points.end(); ++point) {
|
|
|
|
p[ point-ex->contour.points.begin() ].x = point->x;
|
|
|
|
p[ point-ex->contour.points.begin() ].y = point->y;
|
|
|
|
//printf("%ld %ld\n", point->x, point->y);
|
|
|
|
}
|
|
|
|
p.SetHole(false);
|
|
|
|
input.push_back(p);
|
2014-04-25 10:40:21 +00:00
|
|
|
}
|
|
|
|
|
2014-05-01 08:37:38 +00:00
|
|
|
// holes
|
|
|
|
for (Polygons::const_iterator hole = ex->holes.begin(); hole != ex->holes.end(); ++hole) {
|
|
|
|
TPPLPoly p;
|
|
|
|
p.Init(hole->points.size());
|
|
|
|
//printf("%zu\n1\n", hole->points.size());
|
|
|
|
for (Points::const_iterator point = hole->points.begin(); point != hole->points.end(); ++point) {
|
|
|
|
p[ point-hole->points.begin() ].x = point->x;
|
|
|
|
p[ point-hole->points.begin() ].y = point->y;
|
|
|
|
//printf("%ld %ld\n", point->x, point->y);
|
|
|
|
}
|
|
|
|
p.SetHole(true);
|
|
|
|
input.push_back(p);
|
2014-04-25 10:40:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// perform triangulation
|
|
|
|
std::list<TPPLPoly> output;
|
|
|
|
int res = TPPLPartition().Triangulate_MONO(&input, &output);
|
|
|
|
if (res != 1) CONFESS("Triangulation failed");
|
|
|
|
|
|
|
|
// convert output polygons
|
|
|
|
for (std::list<TPPLPoly>::iterator poly = output.begin(); poly != output.end(); ++poly) {
|
|
|
|
long num_points = poly->GetNumPoints();
|
|
|
|
Polygon p;
|
|
|
|
p.points.resize(num_points);
|
|
|
|
for (long i = 0; i < num_points; ++i) {
|
|
|
|
p.points[i].x = (*poly)[i].x;
|
|
|
|
p.points[i].y = (*poly)[i].y;
|
|
|
|
}
|
|
|
|
polygons->push_back(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-01 10:07:11 +00:00
|
|
|
void
|
|
|
|
ExPolygon::triangulate_p2t(Polygons* polygons) const
|
|
|
|
{
|
|
|
|
ExPolygons expp;
|
2014-11-15 22:44:03 +00:00
|
|
|
simplify_polygons(*this, &expp, true);
|
2014-05-01 10:07:11 +00:00
|
|
|
|
|
|
|
for (ExPolygons::const_iterator ex = expp.begin(); ex != expp.end(); ++ex) {
|
|
|
|
// TODO: prevent duplicate points
|
2015-08-01 11:53:21 +00:00
|
|
|
|
2014-05-01 10:07:11 +00:00
|
|
|
// contour
|
2015-08-01 11:53:21 +00:00
|
|
|
std::vector<p2t::Point*> ContourPoints;
|
|
|
|
for (Points::const_iterator point = ex->contour.points.begin(); point != ex->contour.points.end(); ++point) {
|
|
|
|
// We should delete each p2t::Point object
|
|
|
|
ContourPoints.push_back(new p2t::Point(point->x, point->y));
|
2014-05-01 10:07:11 +00:00
|
|
|
}
|
2015-08-01 11:53:21 +00:00
|
|
|
p2t::CDT cdt(ContourPoints);
|
|
|
|
|
2014-05-01 10:07:11 +00:00
|
|
|
// holes
|
|
|
|
for (Polygons::const_iterator hole = ex->holes.begin(); hole != ex->holes.end(); ++hole) {
|
|
|
|
std::vector<p2t::Point*> points;
|
|
|
|
for (Points::const_iterator point = hole->points.begin(); point != hole->points.end(); ++point) {
|
2015-08-01 11:53:21 +00:00
|
|
|
// will be destructed in SweepContext::~SweepContext
|
2014-05-01 10:07:11 +00:00
|
|
|
points.push_back(new p2t::Point(point->x, point->y));
|
|
|
|
}
|
2015-08-01 11:53:21 +00:00
|
|
|
cdt.AddHole(points);
|
2014-05-01 10:07:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// perform triangulation
|
2015-08-01 11:53:21 +00:00
|
|
|
cdt.Triangulate();
|
|
|
|
std::vector<p2t::Triangle*> triangles = cdt.GetTriangles();
|
2014-05-01 10:07:11 +00:00
|
|
|
|
|
|
|
for (std::vector<p2t::Triangle*>::const_iterator triangle = triangles.begin(); triangle != triangles.end(); ++triangle) {
|
|
|
|
Polygon p;
|
|
|
|
for (int i = 0; i <= 2; ++i) {
|
|
|
|
p2t::Point* point = (*triangle)->GetPoint(i);
|
|
|
|
p.points.push_back(Point(point->x, point->y));
|
|
|
|
}
|
|
|
|
polygons->push_back(p);
|
|
|
|
}
|
2015-08-01 11:53:21 +00:00
|
|
|
|
|
|
|
for(std::vector<p2t::Point*>::iterator it = ContourPoints.begin(); it != ContourPoints.end(); ++it) {
|
|
|
|
delete *it;
|
|
|
|
}
|
2014-05-01 10:07:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-06 19:52:36 +00:00
|
|
|
Lines
|
|
|
|
ExPolygon::lines() const
|
|
|
|
{
|
2015-01-19 17:53:04 +00:00
|
|
|
Lines lines = this->contour.lines();
|
|
|
|
for (Polygons::const_iterator h = this->holes.begin(); h != this->holes.end(); ++h) {
|
|
|
|
Lines hole_lines = h->lines();
|
|
|
|
lines.insert(lines.end(), hole_lines.begin(), hole_lines.end());
|
|
|
|
}
|
2015-01-06 19:52:36 +00:00
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
|
2013-07-16 19:04:14 +00:00
|
|
|
}
|