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"
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
class Line
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Point a;
|
|
|
|
Point b;
|
|
|
|
Line() {};
|
|
|
|
explicit Line(Point _a, Point _b): a(_a), b(_b) {};
|
|
|
|
void from_SV(SV* line_sv);
|
|
|
|
void from_SV_check(SV* line_sv);
|
|
|
|
SV* to_SV();
|
2013-07-15 21:12:13 +00:00
|
|
|
SV* to_SV_ref();
|
2013-07-15 20:57:22 +00:00
|
|
|
SV* to_SV_pureperl();
|
|
|
|
void scale(double factor);
|
|
|
|
void translate(double x, double y);
|
|
|
|
void rotate(double angle, Point* center);
|
|
|
|
void reverse();
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<Line> Lines;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|