mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-15 10:47:50 -06:00
Removed the Point::wkt() and Point::dump_perl() methods.
Added to_string() for the basis Eigen vector types.
This commit is contained in:
parent
65011f9382
commit
5b94f53cd7
19 changed files with 33 additions and 157 deletions
|
@ -505,17 +505,6 @@ ExPolygon::lines() const
|
|||
return lines;
|
||||
}
|
||||
|
||||
std::string
|
||||
ExPolygon::dump_perl() const
|
||||
{
|
||||
std::ostringstream ret;
|
||||
ret << "[" << this->contour.dump_perl();
|
||||
for (Polygons::const_iterator h = this->holes.begin(); h != this->holes.end(); ++h)
|
||||
ret << "," << h->dump_perl();
|
||||
ret << "]";
|
||||
return ret.str();
|
||||
}
|
||||
|
||||
BoundingBox get_extents(const ExPolygon &expolygon)
|
||||
{
|
||||
return get_extents(expolygon.contour);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue