From e063fe920e68965ce87fc0b3b9772a64ded9215a Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Tue, 16 Nov 2021 15:59:43 +0100 Subject: [PATCH] Fix of the last commit, G-code resolution was increased 10x by mistake. --- src/libslic3r/GCodeWriter.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/GCodeWriter.hpp b/src/libslic3r/GCodeWriter.hpp index 85137919c..e8a54737e 100644 --- a/src/libslic3r/GCodeWriter.hpp +++ b/src/libslic3r/GCodeWriter.hpp @@ -109,7 +109,7 @@ public: // and the filament crossection is 1.75^2 = 3.063mm2 // thus the filament moves 3.063 / 0.6 = 51x slower than the XY axes // and we need roughly two decimal digits more on extruder than on XY. -#if 0 +#if 1 static constexpr const int XYZF_EXPORT_DIGITS = 3; static constexpr const int E_EXPORT_DIGITS = 5; #else