2013-07-16 19:04:14 +00:00
|
|
|
#include "MultiPoint.hpp"
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
void
|
|
|
|
MultiPoint::scale(double factor)
|
|
|
|
{
|
|
|
|
for (Points::iterator it = points.begin(); it != points.end(); ++it) {
|
|
|
|
(*it).scale(factor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MultiPoint::translate(double x, double y)
|
|
|
|
{
|
|
|
|
for (Points::iterator it = points.begin(); it != points.end(); ++it) {
|
|
|
|
(*it).translate(x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MultiPoint::rotate(double angle, Point* center)
|
|
|
|
{
|
|
|
|
for (Points::iterator it = points.begin(); it != points.end(); ++it) {
|
|
|
|
(*it).rotate(angle, center);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MultiPoint::reverse()
|
|
|
|
{
|
|
|
|
std::reverse(this->points.begin(), this->points.end());
|
|
|
|
}
|
|
|
|
|
2013-09-02 18:22:20 +00:00
|
|
|
Point*
|
|
|
|
MultiPoint::first_point() const
|
2013-08-28 23:36:42 +00:00
|
|
|
{
|
2013-09-02 20:33:03 +00:00
|
|
|
return new Point(this->points.front());
|
2013-08-28 23:36:42 +00:00
|
|
|
}
|
|
|
|
|
2013-07-16 19:04:14 +00:00
|
|
|
void
|
|
|
|
MultiPoint::from_SV(SV* poly_sv)
|
|
|
|
{
|
|
|
|
AV* poly_av = (AV*)SvRV(poly_sv);
|
|
|
|
const unsigned int num_points = av_len(poly_av)+1;
|
|
|
|
this->points.resize(num_points);
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < num_points; i++) {
|
|
|
|
SV** point_sv = av_fetch(poly_av, i, 0);
|
|
|
|
this->points[i].from_SV_check(*point_sv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MultiPoint::from_SV_check(SV* poly_sv)
|
|
|
|
{
|
|
|
|
if (sv_isobject(poly_sv) && (SvTYPE(SvRV(poly_sv)) == SVt_PVMG)) {
|
|
|
|
*this = *(MultiPoint*)SvIV((SV*)SvRV( poly_sv ));
|
|
|
|
} else {
|
|
|
|
this->from_SV(poly_sv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SV*
|
|
|
|
MultiPoint::to_SV() {
|
|
|
|
const unsigned int num_points = this->points.size();
|
|
|
|
AV* av = newAV();
|
|
|
|
av_extend(av, num_points-1);
|
|
|
|
for (unsigned int i = 0; i < num_points; i++) {
|
2013-09-02 18:22:20 +00:00
|
|
|
av_store(av, i, this->points[i].to_SV_ref());
|
2013-07-16 19:04:14 +00:00
|
|
|
}
|
|
|
|
return newRV_noinc((SV*)av);
|
|
|
|
}
|
|
|
|
|
|
|
|
SV*
|
2013-09-03 17:26:58 +00:00
|
|
|
MultiPoint::to_SV_pureperl() const {
|
2013-07-16 19:04:14 +00:00
|
|
|
const unsigned int num_points = this->points.size();
|
|
|
|
AV* av = newAV();
|
|
|
|
av_extend(av, num_points-1);
|
|
|
|
for (unsigned int i = 0; i < num_points; i++) {
|
|
|
|
av_store(av, i, this->points[i].to_SV_pureperl());
|
|
|
|
}
|
|
|
|
return newRV_noinc((SV*)av);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|