34 lines
657 B
C++
34 lines
657 B
C++
#ifndef slic3r_MultiPoint_hpp_
|
|
#define slic3r_MultiPoint_hpp_
|
|
|
|
#include "Line.hpp"
|
|
#include "Point.hpp"
|
|
#include <algorithm>
|
|
#include <vector>
|
|
|
|
namespace Slic3r {
|
|
|
|
class MultiPoint
|
|
{
|
|
public:
|
|
Points points;
|
|
void scale(double factor);
|
|
void translate(double x, double y);
|
|
void rotate(double angle, Point* center);
|
|
void reverse();
|
|
Point* first_point() const;
|
|
virtual Point* last_point() const = 0;
|
|
virtual Lines lines() const = 0;
|
|
double length() const;
|
|
|
|
#ifdef SLIC3RXS
|
|
void from_SV(SV* poly_sv);
|
|
void from_SV_check(SV* poly_sv);
|
|
SV* to_AV();
|
|
SV* to_SV_pureperl() const;
|
|
#endif
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|