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-11-06 23:08:03 +01:00
|
|
|
class Line;
|
2013-08-27 00:52:20 +02:00
|
|
|
class Point;
|
2013-12-21 14:27:58 +01:00
|
|
|
class Pointf;
|
2013-08-27 00:52:20 +02:00
|
|
|
typedef std::vector<Point> Points;
|
2013-11-23 21:39:05 +01:00
|
|
|
typedef std::vector<Point*> PointPtrs;
|
2013-12-21 14:27:58 +01:00
|
|
|
typedef std::vector<Pointf> Pointfs;
|
2013-08-27 00:52:20 +02:00
|
|
|
|
2013-07-06 15:26:32 +02:00
|
|
|
class Point
|
|
|
|
{
|
|
|
|
public:
|
2014-01-05 13:16:13 +01:00
|
|
|
coord_t x;
|
|
|
|
coord_t y;
|
|
|
|
explicit Point(coord_t _x = 0, coord_t _y = 0): x(_x), y(_y) {};
|
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-11-22 22:48:07 +01:00
|
|
|
bool coincides_with(const Point &point) const;
|
2013-08-26 22:39:35 +02:00
|
|
|
bool coincides_with(const Point* point) const;
|
2013-11-23 21:39:05 +01:00
|
|
|
int nearest_point_index(Points &points) const;
|
|
|
|
int nearest_point_index(PointPtrs &points) const;
|
2013-08-27 00:52:20 +02:00
|
|
|
Point* nearest_point(Points points) const;
|
2013-08-28 20:32:25 +02:00
|
|
|
double distance_to(const Point* point) const;
|
2013-11-06 23:08:03 +01:00
|
|
|
double distance_to(const Line* line) const;
|
2013-11-21 20:25:24 +01:00
|
|
|
double distance_to(const Line &line) const;
|
2013-11-22 21:43:35 +01:00
|
|
|
double ccw(const Point &p1, const Point &p2) const;
|
|
|
|
double ccw(const Point* p1, const Point* p2) const;
|
|
|
|
double ccw(const Line &line) const;
|
2013-09-13 14:48:40 +02: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 15:26:32 +02:00
|
|
|
};
|
|
|
|
|
2014-01-06 18:29:10 +01:00
|
|
|
class Point3 : public Point
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
coord_t z;
|
|
|
|
explicit Point3(coord_t _x = 0, coord_t _y = 0, coord_t _z = 0): Point(_x, _y), z(_z) {};
|
|
|
|
};
|
|
|
|
|
2013-12-20 20:54:11 +01:00
|
|
|
class Pointf
|
|
|
|
{
|
|
|
|
public:
|
2014-01-06 18:29:10 +01:00
|
|
|
coordf_t x;
|
|
|
|
coordf_t y;
|
|
|
|
explicit Pointf(coordf_t _x = 0, coordf_t _y = 0): x(_x), y(_y) {};
|
2014-01-07 12:48:09 +01:00
|
|
|
void scale(double factor);
|
|
|
|
void translate(double x, double y);
|
2013-12-20 20:54:11 +01:00
|
|
|
|
|
|
|
#ifdef SLIC3RXS
|
|
|
|
void from_SV(SV* point_sv);
|
|
|
|
SV* to_SV_pureperl() const;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2014-01-06 18:29:10 +01:00
|
|
|
class Pointf3 : public Pointf
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
coordf_t z;
|
|
|
|
explicit Pointf3(coordf_t _x = 0, coordf_t _y = 0, coordf_t _z = 0): Pointf(_x, _y), z(_z) {};
|
2014-01-07 12:48:09 +01:00
|
|
|
void scale(double factor);
|
|
|
|
void translate(double x, double y, double z);
|
2014-01-06 18:29:10 +01:00
|
|
|
};
|
|
|
|
|
2013-07-07 22:36:14 +02:00
|
|
|
}
|
|
|
|
|
2013-07-06 15:26:32 +02:00
|
|
|
#endif
|