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:
Diffstat (limited to 'xs/src/libslic3r/Line.hpp')
-rw-r--r--xs/src/libslic3r/Line.hpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/xs/src/libslic3r/Line.hpp b/xs/src/libslic3r/Line.hpp
index 514a9ca04..4826017ab 100644
--- a/xs/src/libslic3r/Line.hpp
+++ b/xs/src/libslic3r/Line.hpp
@@ -7,20 +7,12 @@
namespace Slic3r {
class Line;
-//############################################################################################################
-#if ENRICO_GCODE_PREVIEW
class Line3;
-#endif // ENRICO_GCODE_PREVIEW
-//############################################################################################################
class Linef3;
class Polyline;
class ThickLine;
typedef std::vector<Line> Lines;
-//############################################################################################################
-#if ENRICO_GCODE_PREVIEW
typedef std::vector<Line3> Lines3;
-#endif // ENRICO_GCODE_PREVIEW
-//############################################################################################################
typedef std::vector<ThickLine> ThickLines;
class Line
@@ -66,8 +58,6 @@ class ThickLine : public Line
ThickLine(Point _a, Point _b) : Line(_a, _b), a_width(0), b_width(0) {};
};
-//############################################################################################################
-#if ENRICO_GCODE_PREVIEW
class Line3
{
public:
@@ -80,8 +70,6 @@ public:
double length() const;
Vector3 vector() const;
};
-#endif // ENRICO_GCODE_PREVIEW
-//############################################################################################################
class Linef
{