Fixed OBJWriter precision bug.

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@881 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Hans-Christian Ebke
2013-07-30 08:43:40 +00:00
parent bdf48be7fe
commit ab74a62b3e

View File

@@ -116,7 +116,7 @@ write(const std::string& _filename, BaseExporter& _be, Options _opt, std::stream
objName_ = objName_.substr(0,dot-1); objName_ = objName_.substr(0,dot-1);
} }
bool result = write(out, _be, _opt); bool result = write(out, _be, _opt, _precision);
out.close(); out.close();
return result; return result;