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:
authorbubnikv <bubnikv@gmail.com>2017-06-08 12:02:29 +0300
committerbubnikv <bubnikv@gmail.com>2017-06-08 12:02:29 +0300
commit8b5f7f0fb25a7608b052c385fc44758fe556eed8 (patch)
tree76bfbd6fceb081a7fee362d3a8e81d42be0ab035 /xs/src/libslic3r/Line.hpp
parentdabcff1c0747c04f1d1e9e33ef7258882221bb39 (diff)
Limit the object movement to the vincinity of the print bed.
Diffstat (limited to 'xs/src/libslic3r/Line.hpp')
-rw-r--r--xs/src/libslic3r/Line.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/Line.hpp b/xs/src/libslic3r/Line.hpp
index 6c40b062f..99e1f4070 100644
--- a/xs/src/libslic3r/Line.hpp
+++ b/xs/src/libslic3r/Line.hpp
@@ -15,7 +15,7 @@ typedef std::vector<ThickLine> ThickLines;
class Line
{
- public:
+public:
Point a;
Point b;
Line() {};