Set the precision when saving a mesh

This commit is contained in:
Oleg Alexandrov 2019-12-12 14:21:12 -08:00 committed by GitHub
parent 7412a02b3e
commit a1e320f00e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ int main()
CGAL::read_ply (in2, mesh);
std::ofstream out ("out.ply");
out.precision(17);
// CGAL::set_binary_mode(out);
CGAL::write_ply (out, mesh);