PrusaSlicer-NonPlainar/xs/xsp/ExPolygon.xsp

52 lines
1.3 KiB
Plaintext
Raw Normal View History

2013-07-06 14:33:49 +00:00
%module{Slic3r::XS};
%{
#include <myinit.h>
#include "ExPolygon.hpp"
%}
%name{Slic3r::ExPolygon} class ExPolygon {
2013-07-07 14:51:02 +00:00
~ExPolygon();
2013-07-14 11:11:01 +00:00
ExPolygon* clone()
%code{% const char* CLASS = "Slic3r::ExPolygon"; RETVAL = new ExPolygon(*THIS); %};
SV* arrayref()
%code{% RETVAL = THIS->to_AV(); %};
SV* pp()
%code{% RETVAL = THIS->to_SV_pureperl(); %};
Polygon* contour()
%code{% const char* CLASS = "Slic3r::Polygon::Ref"; 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();
2013-11-21 14:12:06 +00:00
bool contains_line(Line* line);
bool contains_point(Point* point);
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
2013-07-15 18:31:43 +00:00
RETVAL->contour.from_SV_check(ST(1));
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++) {
2013-07-15 18:31:43 +00:00
RETVAL->holes[i-2].from_SV_check(ST(i));
2013-07-06 14:33:49 +00:00
}
OUTPUT:
RETVAL
void
ExPolygon::rotate(angle, center_sv)
double angle;
SV* center_sv;
CODE:
Point center;
center.from_SV_check(center_sv);
THIS->rotate(angle, &center);
2013-07-06 14:33:49 +00:00
%}
};