2013-07-14 13:53:53 +00:00
|
|
|
#ifndef slic3r_Polygon_hpp_
|
|
|
|
#define slic3r_Polygon_hpp_
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include "EXTERN.h"
|
|
|
|
#include "perl.h"
|
|
|
|
#include "XSUB.h"
|
|
|
|
#include "ppport.h"
|
|
|
|
}
|
|
|
|
|
2013-07-14 14:09:54 +00:00
|
|
|
#include "Polyline.hpp"
|
2013-07-14 13:53:53 +00:00
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
2013-07-14 14:09:54 +00:00
|
|
|
class Polygon : public Polyline {};
|
2013-07-14 13:53:53 +00:00
|
|
|
|
|
|
|
typedef std::vector<Polygon> Polygons;
|
|
|
|
|
|
|
|
void
|
|
|
|
perl2polygon(SV* poly_sv, Polygon& poly)
|
|
|
|
{
|
|
|
|
AV* poly_av = (AV*)SvRV(poly_sv);
|
|
|
|
const unsigned int num_points = av_len(poly_av)+1;
|
|
|
|
poly.points.resize(num_points);
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < num_points; i++) {
|
|
|
|
SV** point_sv = av_fetch(poly_av, i, 0);
|
2013-07-14 14:03:06 +00:00
|
|
|
perl2point(*point_sv, poly.points[i]);
|
2013-07-14 13:53:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-15 14:21:09 +00:00
|
|
|
void
|
|
|
|
perl2polygon_check(SV* poly_sv, Polygon& poly)
|
|
|
|
{
|
|
|
|
if (sv_isobject(poly_sv) && (SvTYPE(SvRV(poly_sv)) == SVt_PVMG)) {
|
|
|
|
poly = *(Polygon*)SvIV((SV*)SvRV( poly_sv ));
|
|
|
|
} else {
|
|
|
|
perl2polygon(poly_sv, poly);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-14 13:53:53 +00:00
|
|
|
SV*
|
|
|
|
polygon2perl(Polygon& poly) {
|
|
|
|
const unsigned int num_points = poly.points.size();
|
|
|
|
AV* av = newAV();
|
|
|
|
av_extend(av, num_points-1);
|
|
|
|
for (unsigned int i = 0; i < num_points; i++) {
|
|
|
|
av_store(av, i, point2perl(poly.points[i]));
|
|
|
|
}
|
|
|
|
return sv_bless(newRV_noinc((SV*)av), gv_stashpv("Slic3r::Polygon", GV_ADD));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|