fix precision numeric for stl writer

This commit is contained in:
Antoine Lavenant 2018-10-09 14:02:44 +02:00
parent 712f468d52
commit a8aa7896a4

View File

@ -359,6 +359,7 @@ private:
else
*m_stream << "facet normal " << vNormal[0] << " " << vNormal[1] << " " << vNormal[2] << std::endl;
*m_stream << "outer loop" << std::endl;
*m_stream << std::fixed << std::setprecision(7);
*m_stream << "vertex " << v1[0] << " " << v1[1] << " " << v1[2] << std::endl;
*m_stream << "vertex " << v2[0] << " " << v2[1] << " " << v2[2] << std::endl;
*m_stream << "vertex " << v3[0] << " " << v3[1] << " " << v3[2] << std::endl;