mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-24 07:03:59 -06:00
28 lines
535 B
C++
28 lines
535 B
C++
#ifndef slic3r_SpiralVase_hpp_
|
|
#define slic3r_SpiralVase_hpp_
|
|
|
|
#include "libslic3r.h"
|
|
#include "GCodeReader.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
class SpiralVase {
|
|
public:
|
|
bool enable;
|
|
|
|
SpiralVase(const PrintConfig &config)
|
|
: enable(false), _config(&config)
|
|
{
|
|
this->_reader.z() = this->_config->z_offset;
|
|
this->_reader.apply_config(*this->_config);
|
|
};
|
|
std::string process_layer(const std::string &gcode);
|
|
|
|
private:
|
|
const PrintConfig* _config;
|
|
GCodeReader _reader;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|