mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-19 20:57:53 -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
|
@ -7,14 +7,6 @@
|
|||
|
||||
namespace Slic3r {
|
||||
|
||||
std::string Line::wkt() const
|
||||
{
|
||||
std::ostringstream ss;
|
||||
ss << "LINESTRING(" << this->a(0) << " " << this->a(1) << ","
|
||||
<< this->b(0) << " " << this->b(1) << ")";
|
||||
return ss.str();
|
||||
}
|
||||
|
||||
bool Line::intersection_infinite(const Line &other, Point* point) const
|
||||
{
|
||||
Vec2d a1 = this->a.cast<double>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue