mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-06-06 05:42:59 -04:00
20 lines
277 B
C++
20 lines
277 B
C++
#ifndef slic3r_Polyline_hpp_
|
|
#define slic3r_Polyline_hpp_
|
|
|
|
#include "Line.hpp"
|
|
#include "MultiPoint.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
class Polyline : public MultiPoint {
|
|
public:
|
|
Lines lines();
|
|
SV* to_SV_ref() const;
|
|
};
|
|
|
|
typedef std::vector<Polyline> Polylines;
|
|
|
|
}
|
|
|
|
#endif
|