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 'src/libslic3r/Line.hpp')
-rw-r--r--src/libslic3r/Line.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libslic3r/Line.hpp b/src/libslic3r/Line.hpp
index d93e37e7f..88a9d4db2 100644
--- a/src/libslic3r/Line.hpp
+++ b/src/libslic3r/Line.hpp
@@ -97,7 +97,7 @@ public:
ThickLine(const Point& a, const Point& b) : Line(a, b), a_width(0), b_width(0) {}
ThickLine(const Point& a, const Point& b, double wa, double wb) : Line(a, b), a_width(wa), b_width(wb) {}
- double a_width, b_width;
+ coordf_t a_width, b_width;
};
class Line3