b38cc2c244
Conflicts: lib/Slic3r.pm lib/Slic3r/ExPolygon.pm lib/Slic3r/Fill.pm lib/Slic3r/Fill/Rectilinear.pm lib/Slic3r/GCode.pm lib/Slic3r/GUI/Plater.pm lib/Slic3r/Geometry/Clipper.pm lib/Slic3r/Layer/Region.pm lib/Slic3r/Print.pm lib/Slic3r/Print/Object.pm lib/Slic3r/TriangleMesh.pm t/shells.t xs/MANIFEST
69 lines
1.8 KiB
Plaintext
69 lines
1.8 KiB
Plaintext
%module{Slic3r::XS};
|
|
|
|
%{
|
|
#include <myinit.h>
|
|
#include "ExPolygonCollection.hpp"
|
|
%}
|
|
|
|
%name{Slic3r::ExPolygon::Collection} class ExPolygonCollection {
|
|
~ExPolygonCollection();
|
|
ExPolygonCollection* clone()
|
|
%code{% const char* CLASS = "Slic3r::ExPolygon::Collection"; RETVAL = new ExPolygonCollection(*THIS); %};
|
|
void clear()
|
|
%code{% THIS->expolygons.clear(); %};
|
|
void scale(double factor);
|
|
void translate(double x, double y);
|
|
void rotate(double angle, Point* center);
|
|
%{
|
|
|
|
ExPolygonCollection*
|
|
ExPolygonCollection::new(...)
|
|
CODE:
|
|
RETVAL = new ExPolygonCollection ();
|
|
// ST(0) is class name, others are expolygons
|
|
RETVAL->expolygons.resize(items-1);
|
|
for (unsigned int i = 1; i < items; i++) {
|
|
// Note: a COPY of the input is stored
|
|
RETVAL->expolygons[i-1].from_SV_check(ST(i));
|
|
}
|
|
OUTPUT:
|
|
RETVAL
|
|
|
|
SV*
|
|
ExPolygonCollection::arrayref()
|
|
CODE:
|
|
AV* av = newAV();
|
|
av_fill(av, THIS->expolygons.size()-1);
|
|
int i = 0;
|
|
for (ExPolygons::iterator it = THIS->expolygons.begin(); it != THIS->expolygons.end(); ++it) {
|
|
av_store(av, i++, (*it).to_SV_ref());
|
|
}
|
|
RETVAL = newRV_noinc((SV*)av);
|
|
OUTPUT:
|
|
RETVAL
|
|
|
|
SV*
|
|
ExPolygonCollection::pp()
|
|
CODE:
|
|
AV* av = newAV();
|
|
av_fill(av, THIS->expolygons.size()-1);
|
|
int i = 0;
|
|
for (ExPolygons::iterator it = THIS->expolygons.begin(); it != THIS->expolygons.end(); ++it) {
|
|
av_store(av, i++, (*it).to_SV_pureperl());
|
|
}
|
|
RETVAL = newRV_noinc((SV*)av);
|
|
OUTPUT:
|
|
RETVAL
|
|
|
|
void
|
|
ExPolygonCollection::append(...)
|
|
CODE:
|
|
for (unsigned int i = 1; i < items; i++) {
|
|
ExPolygon expolygon;
|
|
expolygon.from_SV_check( ST(i) );
|
|
THIS->expolygons.push_back(expolygon);
|
|
}
|
|
|
|
%}
|
|
};
|