PrusaSlicer-NonPlainar/xs/xsp/ExPolygon.xsp

58 lines
1.5 KiB
Plaintext
Raw Normal View History

2013-07-06 14:33:49 +00:00
%module{Slic3r::XS};
%{
#include <xsinit.h>
#include "libslic3r/ExPolygon.hpp"
2013-07-06 14:33:49 +00:00
%}
%name{Slic3r::ExPolygon} class ExPolygon {
2013-07-07 14:51:02 +00:00
~ExPolygon();
Clone<ExPolygon> clone()
%code{% RETVAL = THIS; %};
SV* arrayref()
%code{% RETVAL = to_AV(THIS); %};
SV* pp()
%code{% RETVAL = to_SV_pureperl(THIS); %};
Ref<Polygon> contour()
%code{% RETVAL = &(THIS->contour); %};
Polygons* holes()
%code{% RETVAL = &(THIS->holes); %};
2013-07-11 12:08:11 +00:00
void scale(double factor);
2013-07-11 16:55:51 +00:00
void translate(double x, double y);
2013-08-26 20:50:26 +00:00
double area();
bool is_valid();
bool contains_line(Line* line)
%code{% RETVAL = THIS->contains(*line); %};
bool contains_polyline(Polyline* polyline)
%code{% RETVAL = THIS->contains(*polyline); %};
bool contains_point(Point* point)
%code{% RETVAL = THIS->contains(*point); %};
2013-11-22 01:16:10 +00:00
ExPolygons simplify(double tolerance);
Polygons simplify_p(double tolerance);
2013-07-06 14:33:49 +00:00
%{
ExPolygon*
ExPolygon::new(...)
CODE:
RETVAL = new ExPolygon ();
// ST(0) is class name, ST(1) is contour and others are holes
from_SV_check(ST(1), &RETVAL->contour);
2013-07-07 14:51:02 +00:00
RETVAL->holes.resize(items-2);
2013-07-06 14:33:49 +00:00
for (unsigned int i = 2; i < items; i++) {
from_SV_check(ST(i), &RETVAL->holes[i-2]);
2013-07-06 14:33:49 +00:00
}
OUTPUT:
RETVAL
void
ExPolygon::rotate(angle, center_sv)
double angle;
SV* center_sv;
CODE:
Point center;
from_SV_check(center_sv, &center);
THIS->rotate(angle, center);
2013-07-06 14:33:49 +00:00
%}
};