2013-07-06 13:26:32 +00:00
|
|
|
#ifndef slic3r_Point_hpp_
|
|
|
|
#define slic3r_Point_hpp_
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include "EXTERN.h"
|
|
|
|
#include "perl.h"
|
|
|
|
#include "XSUB.h"
|
|
|
|
#include "ppport.h"
|
|
|
|
}
|
|
|
|
|
2013-07-11 16:55:51 +00:00
|
|
|
#include <math.h>
|
|
|
|
|
2013-07-07 20:36:14 +00:00
|
|
|
namespace Slic3r {
|
|
|
|
|
2013-07-06 13:26:32 +00:00
|
|
|
class Point
|
|
|
|
{
|
|
|
|
public:
|
2013-07-11 17:13:43 +00:00
|
|
|
long x;
|
|
|
|
long y;
|
|
|
|
Point(long _x = 0, long _y = 0): x(_x), y(_y) {};
|
2013-07-11 16:55:51 +00:00
|
|
|
void rotate(double angle, Point* center);
|
2013-07-06 13:26:32 +00:00
|
|
|
};
|
|
|
|
|
2013-07-14 13:53:53 +00:00
|
|
|
typedef std::vector<Point> Points;
|
|
|
|
|
2013-07-11 16:55:51 +00:00
|
|
|
void
|
|
|
|
Point::rotate(double angle, Point* center)
|
|
|
|
{
|
|
|
|
double cur_x = (double)x;
|
|
|
|
double cur_y = (double)y;
|
2013-07-11 17:13:43 +00:00
|
|
|
x = (long)( (double)center->x + cos(angle) * (cur_x - (double)center->x) - sin(angle) * (cur_y - (double)center->y) );
|
|
|
|
y = (long)( (double)center->y + cos(angle) * (cur_y - (double)center->y) + sin(angle) * (cur_x - (double)center->x) );
|
2013-07-11 16:55:51 +00:00
|
|
|
}
|
|
|
|
|
2013-07-06 14:39:22 +00:00
|
|
|
SV*
|
|
|
|
point2perl(Point& point) {
|
|
|
|
AV* av = newAV();
|
|
|
|
av_fill(av, 1);
|
|
|
|
av_store_point_xy(av, point.x, point.y);
|
2013-07-07 11:34:55 +00:00
|
|
|
return sv_bless(newRV_noinc((SV*)av), gv_stashpv("Slic3r::Point", GV_ADD));
|
2013-07-06 14:39:22 +00:00
|
|
|
}
|
|
|
|
|
2013-07-14 14:03:06 +00:00
|
|
|
void
|
|
|
|
perl2point(SV* point_sv, Point& point)
|
|
|
|
{
|
|
|
|
AV* point_av = (AV*)SvRV(point_sv);
|
|
|
|
point.x = (unsigned long)SvIV(*av_fetch(point_av, 0, 0));
|
|
|
|
point.y = (unsigned long)SvIV(*av_fetch(point_av, 1, 0));
|
|
|
|
}
|
|
|
|
|
2013-07-07 20:36:14 +00:00
|
|
|
}
|
|
|
|
|
2013-07-06 13:26:32 +00:00
|
|
|
#endif
|