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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2014-12-22 00:51:45 +0300
committerAlessandro Ranellucci <aar@cpan.org>2014-12-22 00:52:18 +0300
commit7253dc699af4ec91c060e44a2ad3d46f5b261190 (patch)
treeb4abae7f69d86ba8b321497b65322c220162e2e5 /xs/src/libslic3r/GCodeWriter.cpp
parentc21a254480b992812e24e08564b7f1597de71e83 (diff)
Some more work on wireframe
Diffstat (limited to 'xs/src/libslic3r/GCodeWriter.cpp')
-rw-r--r--xs/src/libslic3r/GCodeWriter.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/xs/src/libslic3r/GCodeWriter.cpp b/xs/src/libslic3r/GCodeWriter.cpp
index c36ca4f45..bb8035ac3 100644
--- a/xs/src/libslic3r/GCodeWriter.cpp
+++ b/xs/src/libslic3r/GCodeWriter.cpp
@@ -491,6 +491,12 @@ GCodeWriter::unlift()
return gcode;
}
+Pointf3
+GCodeWriter::get_position() const
+{
+ return this->_pos;
+}
+
#ifdef SLIC3RXS
REGISTER_CLASS(GCodeWriter, "GCode::Writer");
#endif