PrusaSlicer-NonPlainar/xs/src/Point.hpp

63 lines
1.5 KiB
C++
Raw Normal View History

2013-07-06 13:26:32 +00:00
#ifndef slic3r_Point_hpp_
#define slic3r_Point_hpp_
#include <myinit.h>
2013-07-15 18:31:43 +00:00
#include <vector>
2013-07-11 16:55:51 +00:00
#include <math.h>
namespace Slic3r {
class Line;
class Point;
2013-12-21 13:27:58 +00:00
class Pointf;
typedef std::vector<Point> Points;
2013-11-23 20:39:05 +00:00
typedef std::vector<Point*> PointPtrs;
2013-12-21 13:27:58 +00:00
typedef std::vector<Pointf> Pointfs;
2013-07-06 13:26:32 +00:00
class Point
{
public:
2014-01-05 12:16:13 +00:00
coord_t x;
coord_t y;
explicit Point(coord_t _x = 0, coord_t _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);
bool coincides_with(const Point &point) const;
2013-08-26 20:39:35 +00:00
bool coincides_with(const Point* point) const;
2013-11-23 20:39:05 +00:00
int nearest_point_index(Points &points) const;
int nearest_point_index(PointPtrs &points) const;
Point* nearest_point(Points points) const;
double distance_to(const Point* point) const;
double distance_to(const Line* line) const;
double distance_to(const Line &line) const;
double ccw(const Point &p1, const Point &p2) const;
double ccw(const Point* p1, const Point* p2) const;
double ccw(const Line &line) const;
#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-12-20 19:54:11 +00:00
class Pointf
{
public:
double x;
double y;
explicit Pointf(double _x = 0, double _y = 0): x(_x), y(_y) {};
2013-12-20 19:54:11 +00:00
#ifdef SLIC3RXS
void from_SV(SV* point_sv);
SV* to_SV_pureperl() const;
#endif
};
}
2013-07-06 13:26:32 +00:00
#endif