2013-07-15 22:57:22 +02:00
|
|
|
#ifndef slic3r_Line_hpp_
|
|
|
|
|
#define slic3r_Line_hpp_
|
|
|
|
|
|
2013-07-16 21:04:14 +02:00
|
|
|
#include <myinit.h>
|
2013-07-15 22:57:22 +02:00
|
|
|
#include "Point.hpp"
|
|
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
2013-11-06 23:08:03 +01:00
|
|
|
class Line;
|
2013-11-21 15:12:06 +01:00
|
|
|
class Polyline;
|
2013-11-06 23:08:03 +01:00
|
|
|
|
2013-07-15 22:57:22 +02:00
|
|
|
class Line
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Point a;
|
|
|
|
|
Point b;
|
|
|
|
|
Line() {};
|
|
|
|
|
explicit Line(Point _a, Point _b): a(_a), b(_b) {};
|
2014-01-17 14:22:37 +01:00
|
|
|
std::string wkt() const;
|
2013-11-21 15:12:06 +01:00
|
|
|
operator Polyline() const;
|
2013-07-15 22:57:22 +02:00
|
|
|
void scale(double factor);
|
|
|
|
|
void translate(double x, double y);
|
2014-04-24 13:43:24 +02:00
|
|
|
void rotate(double angle, const Point ¢er);
|
2013-07-15 22:57:22 +02:00
|
|
|
void reverse();
|
2013-08-28 20:32:25 +02:00
|
|
|
double length() const;
|
2013-08-29 01:36:42 +02:00
|
|
|
Point* midpoint() const;
|
2014-03-15 16:53:20 +01:00
|
|
|
void point_at(double distance, Point* point) const;
|
|
|
|
|
Point point_at(double distance) const;
|
2014-04-24 16:40:10 +02:00
|
|
|
bool coincides_with(const Line &line) const;
|
|
|
|
|
double distance_to(const Point &point) const;
|
2014-05-02 13:26:59 +02:00
|
|
|
bool parallel_to(double angle) const;
|
|
|
|
|
bool parallel_to(const Line &line) const;
|
2014-03-04 23:33:13 +01:00
|
|
|
double atan2_() const;
|
|
|
|
|
double direction() const;
|
2014-03-05 18:43:01 +01:00
|
|
|
Vector vector() const;
|
2013-09-13 14:48:40 +02:00
|
|
|
|
|
|
|
|
#ifdef SLIC3RXS
|
|
|
|
|
void from_SV(SV* line_sv);
|
|
|
|
|
void from_SV_check(SV* line_sv);
|
|
|
|
|
SV* to_AV();
|
|
|
|
|
SV* to_SV_pureperl() const;
|
|
|
|
|
#endif
|
2013-07-15 22:57:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef std::vector<Line> Lines;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-09 17:26:39 +01:00
|
|
|
// start Boost
|
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 {
|
|
|
|
|
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 22:57:22 +02:00
|
|
|
#endif
|