2013-07-15 20:57:22 +00:00
|
|
|
#ifndef slic3r_Line_hpp_
|
|
|
|
#define slic3r_Line_hpp_
|
|
|
|
|
2013-07-16 19:04:14 +00:00
|
|
|
#include <myinit.h>
|
2013-07-15 20:57:22 +00:00
|
|
|
#include "Point.hpp"
|
2014-01-09 16:26:39 +00:00
|
|
|
#include <boost/polygon/polygon.hpp>
|
2013-07-15 20:57:22 +00:00
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
2013-11-06 22:08:03 +00:00
|
|
|
class Line;
|
2013-11-21 14:12:06 +00:00
|
|
|
class Polyline;
|
2013-11-06 22:08:03 +00:00
|
|
|
|
2013-07-15 20:57:22 +00:00
|
|
|
class Line
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Point a;
|
|
|
|
Point b;
|
|
|
|
Line() {};
|
|
|
|
explicit Line(Point _a, Point _b): a(_a), b(_b) {};
|
2014-01-17 13:22:37 +00:00
|
|
|
std::string wkt() const;
|
2013-11-21 14:12:06 +00:00
|
|
|
operator Polyline() const;
|
2013-07-15 20:57:22 +00:00
|
|
|
void scale(double factor);
|
|
|
|
void translate(double x, double y);
|
|
|
|
void rotate(double angle, Point* center);
|
|
|
|
void reverse();
|
2013-08-28 18:32:25 +00:00
|
|
|
double length() const;
|
2013-08-28 23:36:42 +00:00
|
|
|
Point* midpoint() const;
|
2013-10-27 21:57:25 +00:00
|
|
|
Point* point_at(double distance) const;
|
2013-11-06 18:38:10 +00:00
|
|
|
bool coincides_with(const Line* line) const;
|
2013-11-06 22:08:03 +00:00
|
|
|
double distance_to(const Point* point) const;
|
2014-03-04 22:33:13 +00:00
|
|
|
double atan2_() const;
|
|
|
|
double direction() const;
|
2014-03-05 17:43:01 +00:00
|
|
|
Vector vector() const;
|
2013-09-13 12:48:40 +00:00
|
|
|
|
|
|
|
#ifdef SLIC3RXS
|
|
|
|
void from_SV(SV* line_sv);
|
|
|
|
void from_SV_check(SV* line_sv);
|
|
|
|
SV* to_AV();
|
|
|
|
SV* to_SV_ref();
|
|
|
|
SV* to_SV_clone_ref() const;
|
|
|
|
SV* to_SV_pureperl() const;
|
|
|
|
#endif
|
2013-07-15 20:57:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<Line> Lines;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-01-09 16:26:39 +00:00
|
|
|
// start Boost
|
|
|
|
namespace boost { namespace polygon {
|
|
|
|
template <>
|
|
|
|
struct geometry_concept<Line> { typedef segment_concept type; };
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct segment_traits<Line> {
|
|
|
|
typedef coord_t coordinate_type;
|
|
|
|
typedef Point point_type;
|
|
|
|
|
|
|
|
static inline point_type get(const Line& line, direction_1d dir) {
|
|
|
|
return dir.to_int() ? line.b : line.a;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} }
|
|
|
|
// end Boost
|
|
|
|
|
2013-07-15 20:57:22 +00:00
|
|
|
#endif
|