- Use Fixed as stream option in OBJ writer to avoid problems with other programs reading scientific notation
closes #60
This commit is contained in:
@@ -97,8 +97,12 @@ write(const std::string& _filename, BaseExporter& _be, Options _opt, std::stream
|
||||
return false;
|
||||
}
|
||||
|
||||
// Set precision on output stream. The default is set via IOManager and passed through to all writers.
|
||||
out.precision(_precision);
|
||||
|
||||
// Set fixed output to avoid problems with programs not reading scientific notation correctly
|
||||
out << std::fixed;
|
||||
|
||||
{
|
||||
#if defined(WIN32)
|
||||
std::string::size_type dot = _filename.find_last_of("\\/");
|
||||
|
||||
Reference in New Issue
Block a user