2013-07-06 15:26:32 +02:00
|
|
|
#ifndef slic3r_Point_hpp_
|
|
|
|
#define slic3r_Point_hpp_
|
|
|
|
|
2015-12-08 00:39:54 +01:00
|
|
|
#include "libslic3r.h"
|
2013-07-15 20:31:43 +02:00
|
|
|
#include <vector>
|
2013-07-11 18:55:51 +02:00
|
|
|
#include <math.h>
|
2014-01-17 14:22:37 +01:00
|
|
|
#include <string>
|
2015-05-02 21:43:22 +02:00
|
|
|
#include <sstream>
|
2013-07-11 18:55:51 +02:00
|
|
|
|
2013-07-07 22:36:14 +02:00
|
|
|
namespace Slic3r {
|
|
|
|
|
2013-11-06 23:08:03 +01:00
|
|
|
class Line;
|
2015-01-18 00:36:21 +01:00
|
|
|
class Linef;
|
2014-05-21 20:08:21 +02:00
|
|
|
class MultiPoint;
|
2013-08-27 00:52:20 +02:00
|
|
|
class Point;
|
2013-12-21 14:27:58 +01:00
|
|
|
class Pointf;
|
2014-11-15 22:41:22 +01:00
|
|
|
class Pointf3;
|
2014-03-05 18:43:01 +01:00
|
|
|
typedef Point Vector;
|
2014-12-15 01:28:11 +01:00
|
|
|
typedef Pointf Vectorf;
|
2014-12-12 22:43:04 +01:00
|
|
|
typedef Pointf3 Vectorf3;
|
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;
|
2014-04-24 16:40:10 +02:00
|
|
|
typedef std::vector<const Point*> PointConstPtrs;
|
2013-12-21 14:27:58 +01:00
|
|
|
typedef std::vector<Pointf> Pointfs;
|
2014-11-15 22:41:22 +01:00
|
|
|
typedef std::vector<Pointf3> Pointf3s;
|
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;
|
2014-05-22 13:47:30 +02:00
|
|
|
Point(coord_t _x = 0, coord_t _y = 0): x(_x), y(_y) {};
|
|
|
|
Point(int _x, int _y): x(_x), y(_y) {};
|
|
|
|
Point(long long _x, long long _y): x(_x), y(_y) {}; // for Clipper
|
2014-05-22 12:28:12 +02:00
|
|
|
Point(double x, double y);
|
2014-11-09 12:25:59 +01:00
|
|
|
static Point new_scale(coordf_t x, coordf_t y) {
|
|
|
|
return Point(scale_(x), scale_(y));
|
|
|
|
};
|
2014-01-09 19:56:12 +01:00
|
|
|
bool operator==(const Point& rhs) const;
|
2014-01-17 14:22:37 +01:00
|
|
|
std::string wkt() const;
|
2013-07-15 16:04:49 +02:00
|
|
|
void scale(double factor);
|
|
|
|
void translate(double x, double y);
|
2014-12-12 22:43:04 +01:00
|
|
|
void translate(const Vector &vector);
|
2014-04-24 13:43:24 +02:00
|
|
|
void rotate(double angle, const Point ¢er);
|
2013-11-22 22:48:07 +01:00
|
|
|
bool coincides_with(const Point &point) const;
|
2014-06-11 21:57:32 +02:00
|
|
|
bool coincides_with_epsilon(const Point &point) const;
|
2014-04-24 16:40:10 +02:00
|
|
|
int nearest_point_index(const Points &points) const;
|
|
|
|
int nearest_point_index(const PointConstPtrs &points) const;
|
|
|
|
int nearest_point_index(const PointPtrs &points) const;
|
2015-01-06 20:52:36 +01:00
|
|
|
size_t nearest_waypoint_index(const Points &points, const Point &point) const;
|
2014-09-23 20:19:47 +02:00
|
|
|
bool nearest_point(const Points &points, Point* point) const;
|
2015-01-06 20:52:36 +01:00
|
|
|
bool nearest_waypoint(const Points &points, const Point &dest, Point* point) const;
|
2014-04-24 16:40:10 +02:00
|
|
|
double distance_to(const Point &point) const;
|
2013-11-21 20:25:24 +01:00
|
|
|
double distance_to(const Line &line) const;
|
2015-01-03 15:03:53 +01:00
|
|
|
double perp_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 Line &line) const;
|
2014-12-07 19:53:22 +01:00
|
|
|
double ccw_angle(const Point &p1, const Point &p2) const;
|
2014-05-21 20:08:21 +02:00
|
|
|
Point projection_onto(const MultiPoint &poly) const;
|
|
|
|
Point projection_onto(const Line &line) const;
|
2014-05-26 15:19:13 +02:00
|
|
|
Point negative() const;
|
2014-12-13 22:18:43 +01:00
|
|
|
Vector vector_to(const Point &point) const;
|
2013-07-06 15:26:32 +02:00
|
|
|
};
|
|
|
|
|
2014-05-21 20:08:21 +02:00
|
|
|
Point operator+(const Point& point1, const Point& point2);
|
|
|
|
Point operator*(double scalar, const Point& point2);
|
|
|
|
|
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) {};
|
|
|
|
};
|
|
|
|
|
2015-05-02 21:43:22 +02:00
|
|
|
std::ostream& operator<<(std::ostream &stm, const Pointf &pointf);
|
|
|
|
|
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) {};
|
2015-01-18 00:36:21 +01:00
|
|
|
static Pointf new_unscale(coord_t x, coord_t y) {
|
|
|
|
return Pointf(unscale(x), unscale(y));
|
|
|
|
};
|
|
|
|
static Pointf new_unscale(const Point &p) {
|
|
|
|
return Pointf(unscale(p.x), unscale(p.y));
|
|
|
|
};
|
2015-12-19 14:49:29 +01:00
|
|
|
std::string wkt() const;
|
2014-01-07 12:48:09 +01:00
|
|
|
void scale(double factor);
|
|
|
|
void translate(double x, double y);
|
2015-12-02 18:06:18 +01:00
|
|
|
void translate(const Vectorf &vector);
|
2014-08-03 00:20:55 +02:00
|
|
|
void rotate(double angle, const Pointf ¢er);
|
2014-12-15 01:28:11 +01:00
|
|
|
Pointf negative() const;
|
|
|
|
Vectorf vector_to(const Pointf &point) const;
|
2013-12-20 20:54:11 +01:00
|
|
|
};
|
|
|
|
|
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) {};
|
2015-01-18 00:36:21 +01:00
|
|
|
static Pointf3 new_unscale(coord_t x, coord_t y, coord_t z) {
|
|
|
|
return Pointf3(unscale(x), unscale(y), unscale(z));
|
|
|
|
};
|
2014-01-07 12:48:09 +01:00
|
|
|
void scale(double factor);
|
2014-12-12 22:43:04 +01:00
|
|
|
void translate(const Vectorf3 &vector);
|
2014-01-07 12:48:09 +01:00
|
|
|
void translate(double x, double y, double z);
|
2014-12-13 22:18:43 +01:00
|
|
|
double distance_to(const Pointf3 &point) const;
|
|
|
|
Pointf3 negative() const;
|
|
|
|
Vectorf3 vector_to(const Pointf3 &point) const;
|
2014-01-06 18:29:10 +01:00
|
|
|
};
|
|
|
|
|
2013-07-07 22:36:14 +02:00
|
|
|
}
|
|
|
|
|
2014-01-09 17:26:39 +01:00
|
|
|
// start Boost
|
2016-03-13 23:51:35 -07:00
|
|
|
#include <boost/version.hpp>
|
2014-04-24 13:43:24 +02:00
|
|
|
#include <boost/polygon/polygon.hpp>
|
2014-01-09 17:26:39 +01:00
|
|
|
namespace boost { namespace polygon {
|
2014-04-24 13:43:24 +02:00
|
|
|
template <>
|
|
|
|
struct geometry_concept<coord_t> { typedef coordinate_concept type; };
|
|
|
|
|
2016-03-14 00:02:42 +01:00
|
|
|
/* Boost.Polygon already defines a specialization for coordinate_traits<long> as of 1.60:
|
|
|
|
https://github.com/boostorg/polygon/commit/0ac7230dd1f8f34cb12b86c8bb121ae86d3d9b97 */
|
|
|
|
#if BOOST_VERSION < 106000
|
2014-04-24 13:43:24 +02:00
|
|
|
template <>
|
|
|
|
struct coordinate_traits<coord_t> {
|
|
|
|
typedef coord_t coordinate_type;
|
|
|
|
typedef long double area_type;
|
|
|
|
typedef long long manhattan_area_type;
|
|
|
|
typedef unsigned long long unsigned_area_type;
|
|
|
|
typedef long long coordinate_difference;
|
|
|
|
typedef long double coordinate_distance;
|
|
|
|
};
|
2016-03-14 00:02:42 +01:00
|
|
|
#endif
|
2014-04-24 13:43:24 +02:00
|
|
|
|
2014-01-09 17:26:39 +01:00
|
|
|
template <>
|
|
|
|
struct geometry_concept<Point> { typedef point_concept type; };
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct point_traits<Point> {
|
|
|
|
typedef coord_t coordinate_type;
|
|
|
|
|
|
|
|
static inline coordinate_type get(const Point& point, orientation_2d orient) {
|
|
|
|
return (orient == HORIZONTAL) ? point.x : point.y;
|
|
|
|
}
|
|
|
|
};
|
2014-04-24 13:43:24 +02:00
|
|
|
|
|
|
|
template <>
|
|
|
|
struct point_mutable_traits<Point> {
|
|
|
|
typedef coord_t coordinate_type;
|
|
|
|
static inline void set(Point& point, orientation_2d orient, coord_t value) {
|
|
|
|
if (orient == HORIZONTAL)
|
|
|
|
point.x = value;
|
|
|
|
else
|
|
|
|
point.y = value;
|
|
|
|
}
|
|
|
|
static inline Point construct(coord_t x_value, coord_t y_value) {
|
|
|
|
Point retval;
|
|
|
|
retval.x = x_value;
|
|
|
|
retval.y = y_value;
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
};
|
2014-01-09 17:26:39 +01:00
|
|
|
} }
|
|
|
|
// end Boost
|
|
|
|
|
2013-07-06 15:26:32 +02:00
|
|
|
#endif
|