Slic3r/xs/xsp/Point.xsp

46 lines
950 B
Plaintext
Raw Normal View History

2013-07-06 17:26:32 +04:00
%module{Slic3r::XS};
%{
#include <myinit.h>
#include "Point.hpp"
%}
2013-07-15 22:31:43 +04:00
%name{Slic3r::Point} class Point {
2013-07-06 18:33:49 +04:00
Point(unsigned long _x = 0, unsigned long _y = 0);
2013-07-07 18:51:02 +04:00
~Point();
2013-07-15 18:04:49 +04:00
Point* clone()
2013-07-15 22:31:43 +04:00
%code{% const char* CLASS = "Slic3r::Point"; RETVAL = new Point(*THIS); %};
2013-07-15 18:04:49 +04:00
void scale(double factor);
void translate(double x, double y);
SV* arrayref()
2013-07-15 22:31:43 +04:00
%code{% RETVAL = THIS->to_SV(true); %};
unsigned long x()
%code{% RETVAL = THIS->x; %};
unsigned long y()
%code{% RETVAL = THIS->y; %};
2013-07-15 18:04:49 +04:00
2013-07-06 18:39:22 +04:00
%{
2013-07-15 18:04:49 +04:00
void
Point::rotate(angle, center_sv)
double angle;
SV* center_sv;
CODE:
Point center;
perl2point_check(center_sv, center);
THIS->rotate(angle, &center);
bool
Point::coincides_with(point_sv)
SV* point_sv;
2013-07-06 18:39:22 +04:00
CODE:
2013-07-15 18:04:49 +04:00
Point point;
perl2point_check(point_sv, point);
RETVAL = THIS->coincides_with(&point);
2013-07-06 18:39:22 +04:00
OUTPUT:
RETVAL
%}
2013-07-15 18:04:49 +04:00
2013-07-06 17:26:32 +04:00
};