mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-14 19:12:38 -07:00
38 lines
605 B
C++
38 lines
605 B
C++
#include "Polyline.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
Point*
|
|
Polyline::last_point() const
|
|
{
|
|
return new Point(this->points.back());
|
|
}
|
|
|
|
Lines
|
|
Polyline::lines()
|
|
{
|
|
Lines lines;
|
|
for (int i = 0; i < this->points.size()-1; i++) {
|
|
lines.push_back(Line(this->points[i], this->points[i+1]));
|
|
}
|
|
return lines;
|
|
}
|
|
|
|
SV*
|
|
Polyline::to_SV_ref() const
|
|
{
|
|
SV* sv = newSV(0);
|
|
sv_setref_pv( sv, "Slic3r::Polyline::Ref", (void*)this );
|
|
return sv;
|
|
}
|
|
|
|
SV*
|
|
Polyline::to_SV_clone_ref() const
|
|
{
|
|
SV* sv = newSV(0);
|
|
sv_setref_pv( sv, "Slic3r::Polyline", new Polyline(*this) );
|
|
return sv;
|
|
}
|
|
|
|
}
|