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>2015-01-15 22:06:30 +0300
committerAlessandro Ranellucci <aar@cpan.org>2015-01-15 22:06:30 +0300
commite0a3d2577c7d0b29963caf9fb4cffc0e55d0bd2c (patch)
treebb516cdce8c0ff735f8e3b6568a9b2be49e58914 /xs/src/libslic3r/Line.hpp
parent18e815d0329e3dbf7c645905364640124a94733f (diff)
Initial work for 3D rendering of toolpaths
Diffstat (limited to 'xs/src/libslic3r/Line.hpp')
-rw-r--r--xs/src/libslic3r/Line.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/xs/src/libslic3r/Line.hpp b/xs/src/libslic3r/Line.hpp
index 76c385ce6..0b9cc6302 100644
--- a/xs/src/libslic3r/Line.hpp
+++ b/xs/src/libslic3r/Line.hpp
@@ -55,6 +55,7 @@ class Linef3
Linef3() {};
explicit Linef3(Pointf3 _a, Pointf3 _b): a(_a), b(_b) {};
Pointf3 intersect_plane(double z) const;
+ void scale(double factor);
#ifdef SLIC3RXS
void from_SV(SV* line_sv);