b292554fd8
Fixed the profiling build.
29 lines
535 B
C++
29 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
|