2013-07-06 13:26:32 +00:00
|
|
|
#ifndef slic3r_Point_hpp_
|
|
|
|
#define slic3r_Point_hpp_
|
|
|
|
|
2013-07-16 19:04:14 +00:00
|
|
|
#include <myinit.h>
|
2013-07-15 18:31:43 +00:00
|
|
|
#include <vector>
|
2013-07-11 16:55:51 +00:00
|
|
|
#include <math.h>
|
|
|
|
|
2013-07-07 20:36:14 +00:00
|
|
|
namespace Slic3r {
|
|
|
|
|
2013-11-06 22:08:03 +00:00
|
|
|
class Line;
|
2013-08-26 22:52:20 +00:00
|
|
|
class Point;
|
|
|
|
typedef std::vector<Point> Points;
|
|
|
|
|
2013-07-06 13:26:32 +00:00
|
|
|
class Point
|
|
|
|
{
|
|
|
|
public:
|
2013-07-11 17:13:43 +00:00
|
|
|
long x;
|
|
|
|
long y;
|
2013-07-15 18:31:43 +00:00
|
|
|
explicit Point(long _x = 0, long _y = 0): x(_x), y(_y) {};
|
2013-07-15 14:04:49 +00:00
|
|
|
void scale(double factor);
|
|
|
|
void translate(double x, double y);
|
2013-07-11 16:55:51 +00:00
|
|
|
void rotate(double angle, Point* center);
|
2013-08-26 20:39:35 +00:00
|
|
|
bool coincides_with(const Point* point) const;
|
2013-08-26 22:52:20 +00:00
|
|
|
int nearest_point_index(const Points points) const;
|
|
|
|
Point* nearest_point(Points points) const;
|
2013-08-28 18:32:25 +00:00
|
|
|
double distance_to(const Point* point) const;
|
2013-11-06 22:08:03 +00:00
|
|
|
double distance_to(const Line* line) const;
|
2013-09-13 12:48:40 +00:00
|
|
|
|
|
|
|
#ifdef SLIC3RXS
|
|
|
|
void from_SV(SV* point_sv);
|
|
|
|
void from_SV_check(SV* point_sv);
|
|
|
|
SV* to_SV_ref();
|
|
|
|
SV* to_SV_clone_ref() const;
|
|
|
|
SV* to_SV_pureperl() const;
|
|
|
|
#endif
|
2013-07-06 13:26:32 +00:00
|
|
|
};
|
|
|
|
|
2013-07-07 20:36:14 +00:00
|
|
|
}
|
|
|
|
|
2013-07-06 13:26:32 +00:00
|
|
|
#endif
|