OrcaSlicer/xs/src/Line.hpp
Alessandro Ranellucci eadffe4a9e Merge branch 'master' into boost-medialaxis
Conflicts:
	lib/Slic3r/Layer/Region.pm
	xs/src/ExPolygon.cpp
	xs/src/Point.cpp
	xs/src/Point.hpp
	xs/src/TriangleMesh.cpp
	xs/t/01_trianglemesh.t
2014-03-02 22:36:20 +01:00

63 lines
1.3 KiB
C++

#ifndef slic3r_Line_hpp_
#define slic3r_Line_hpp_
#include <myinit.h>
#include "Point.hpp"
#include <boost/polygon/polygon.hpp>
namespace Slic3r {
class Line;
class Polyline;
class Line
{
public:
Point a;
Point b;
Line() {};
explicit Line(Point _a, Point _b): a(_a), b(_b) {};
std::string wkt() const;
operator Polyline() const;
void scale(double factor);
void translate(double x, double y);
void rotate(double angle, Point* center);
void reverse();
double length() const;
Point* midpoint() const;
Point* point_at(double distance) const;
bool coincides_with(const Line* line) const;
double distance_to(const Point* point) const;
#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
};
typedef std::vector<Line> Lines;
}
// 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
#endif