Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Turri <enricoturri@seznam.cz>2019-08-20 10:01:09 +0300
committerEnrico Turri <enricoturri@seznam.cz>2019-08-20 10:01:09 +0300
commit1f6aab312b544ff2c0225cc3516c543a3454f078 (patch)
treeda6d8ca536772d53303fee1267ab4206a6b26251 /src/slic3r/GUI/3DScene.hpp
parent4fbee3216b9a5067e83e3ae1d90cfc397ab2604e (diff)
1st installment of export of gcode toolpaths to obj file
Diffstat (limited to 'src/slic3r/GUI/3DScene.hpp')
-rw-r--r--src/slic3r/GUI/3DScene.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/slic3r/GUI/3DScene.hpp b/src/slic3r/GUI/3DScene.hpp
index 482c2f580..779194720 100644
--- a/src/slic3r/GUI/3DScene.hpp
+++ b/src/slic3r/GUI/3DScene.hpp
@@ -564,6 +564,9 @@ public:
// Return CPU, GPU and total memory log line.
std::string log_memory_info() const;
+ // Export the geometry of the GLVolumes toolpaths of this collection into the file with the given path, in obj format
+ void export_toolpaths_to_obj(const char* filename) const;
+
private:
GLVolumeCollection(const GLVolumeCollection &other);
GLVolumeCollection& operator=(const GLVolumeCollection &);