2013-07-15 20:57:22 +00:00
|
|
|
#ifndef slic3r_Line_hpp_
|
|
|
|
#define slic3r_Line_hpp_
|
|
|
|
|
2015-12-07 23:39:54 +00:00
|
|
|
#include "libslic3r.h"
|
2013-07-15 20:57:22 +00:00
|
|
|
#include "Point.hpp"
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
2013-11-06 22:08:03 +00:00
|
|
|
class Line;
|
2014-12-16 00:12:37 +00:00
|
|
|
class Linef3;
|
2013-11-21 14:12:06 +00:00
|
|
|
class Polyline;
|
2016-03-19 14:33:58 +00:00
|
|
|
class ThickLine;
|
2015-01-06 19:52:36 +00:00
|
|
|
typedef std::vector<Line> Lines;
|
2016-03-19 14:33:58 +00:00
|
|
|
typedef std::vector<ThickLine> ThickLines;
|
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;
|
2015-01-06 19:52:36 +00:00
|
|
|
operator Lines() 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);
|
2014-04-24 11:43:24 +00:00
|
|
|
void rotate(double angle, const Point ¢er);
|
2013-07-15 20:57:22 +00:00
|
|
|
void reverse();
|
2013-08-28 18:32:25 +00:00
|
|
|
double length() const;
|
2015-01-19 17:53:04 +00:00
|
|
|
Point midpoint() const;
|
2014-03-15 15:53:20 +00:00
|
|
|
void point_at(double distance, Point* point) const;
|
|
|
|
Point point_at(double distance) const;
|
2015-01-16 15:25:39 +00:00
|
|
|
bool intersection_infinite(const Line &other, Point* point) const;
|
2014-04-24 14:40:10 +00:00
|
|
|
bool coincides_with(const Line &line) const;
|
|
|
|
double distance_to(const Point &point) const;
|
2014-05-02 11:26:59 +00:00
|
|
|
bool parallel_to(double angle) const;
|
|
|
|
bool parallel_to(const Line &line) const;
|
2014-03-04 22:33:13 +00:00
|
|
|
double atan2_() const;
|
2014-08-03 13:03:11 +00:00
|
|
|
double orientation() const;
|
2014-03-04 22:33:13 +00:00
|
|
|
double direction() const;
|
2014-03-05 17:43:01 +00:00
|
|
|
Vector vector() const;
|
2014-12-15 14:19:42 +00:00
|
|
|
Vector normal() const;
|
2016-03-19 14:33:58 +00:00
|
|
|
void extend_end(double distance);
|
|
|
|
void extend_start(double distance);
|
|
|
|
bool intersection(const Line& line, Point* intersection) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ThickLine : public Line
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
coordf_t a_width, b_width;
|
|
|
|
|
|
|
|
ThickLine() : a_width(0), b_width(0) {};
|
|
|
|
ThickLine(Point _a, Point _b) : a_width(0), b_width(0), Line(_a, _b) {};
|
2013-07-15 20:57:22 +00:00
|
|
|
};
|
|
|
|
|
2015-01-17 23:36:21 +00:00
|
|
|
class Linef
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Pointf a;
|
|
|
|
Pointf b;
|
|
|
|
Linef() {};
|
|
|
|
explicit Linef(Pointf _a, Pointf _b): a(_a), b(_b) {};
|
|
|
|
};
|
|
|
|
|
2014-12-16 00:12:37 +00:00
|
|
|
class Linef3
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Pointf3 a;
|
|
|
|
Pointf3 b;
|
|
|
|
Linef3() {};
|
|
|
|
explicit Linef3(Pointf3 _a, Pointf3 _b): a(_a), b(_b) {};
|
|
|
|
Pointf3 intersect_plane(double z) const;
|
2015-01-15 19:06:30 +00:00
|
|
|
void scale(double factor);
|
2014-12-16 00:12:37 +00:00
|
|
|
};
|
|
|
|
|
2013-07-15 20:57:22 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 16:26:39 +00:00
|
|
|
// start Boost
|
2014-04-24 11:43:24 +00:00
|
|
|
#include <boost/polygon/polygon.hpp>
|
2014-01-09 16:26:39 +00: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 20:57:22 +00:00
|
|
|
#endif
|