2013-07-06 15:26:32 +02:00
|
|
|
#ifndef slic3r_Point_hpp_
|
|
|
|
#define slic3r_Point_hpp_
|
|
|
|
|
2013-07-16 21:04:14 +02:00
|
|
|
#include <myinit.h>
|
2013-07-15 20:31:43 +02:00
|
|
|
#include <vector>
|
2013-07-11 18:55:51 +02:00
|
|
|
#include <math.h>
|
|
|
|
|
2013-07-07 22:36:14 +02:00
|
|
|
namespace Slic3r {
|
|
|
|
|
2013-07-06 15:26:32 +02:00
|
|
|
class Point
|
|
|
|
{
|
|
|
|
public:
|
2013-07-11 19:13:43 +02:00
|
|
|
long x;
|
|
|
|
long y;
|
2013-07-15 20:31:43 +02:00
|
|
|
explicit Point(long _x = 0, long _y = 0): x(_x), y(_y) {};
|
2013-07-15 22:57:22 +02:00
|
|
|
void from_SV(SV* point_sv);
|
|
|
|
void from_SV_check(SV* point_sv);
|
|
|
|
SV* to_SV_pureperl();
|
2013-07-15 16:04:49 +02:00
|
|
|
void scale(double factor);
|
|
|
|
void translate(double x, double y);
|
2013-07-11 18:55:51 +02:00
|
|
|
void rotate(double angle, Point* center);
|
2013-07-15 16:04:49 +02:00
|
|
|
bool coincides_with(Point* point);
|
2013-07-06 15:26:32 +02:00
|
|
|
};
|
|
|
|
|
2013-07-14 15:53:53 +02:00
|
|
|
typedef std::vector<Point> Points;
|
|
|
|
|
2013-07-07 22:36:14 +02:00
|
|
|
}
|
|
|
|
|
2013-07-06 15:26:32 +02:00
|
|
|
#endif
|