Files
QIDISlicer/src/libslic3r/Format/SVG.hpp

15 lines
304 B
C++
Raw Normal View History

2023-12-27 18:02:35 +08:00
#ifndef slic3r_Format_SVG_hpp_
#define slic3r_Format_SVG_hpp_
#include <string>
namespace Slic3r {
class Model;
// Load an SVG file as embossed shape into a provided model.
bool load_svg(const std::string &input_file, Model &output_model);
}; // namespace Slic3r
#endif /* slic3r_Format_SVG_hpp_ */