From 3700950474583e6c64163fab848a831cdcfbf44e Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sun, 28 Aug 2016 12:10:18 +0200 Subject: [PATCH] Prevent scientific notation in --info output --- xs/src/libslic3r/Model.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/xs/src/libslic3r/Model.cpp b/xs/src/libslic3r/Model.cpp index 72c779339b..6c4cbdfaef 100644 --- a/xs/src/libslic3r/Model.cpp +++ b/xs/src/libslic3r/Model.cpp @@ -734,6 +734,7 @@ void ModelObject::print_info() const { using namespace std; + cout << fixed; cout << "[" << boost::filesystem::path(this->input_file).filename().string() << "]" << endl; TriangleMesh mesh = this->raw_mesh();