Skip to content

Commit

Permalink
18->17
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastien Loriot <[email protected]>
  • Loading branch information
janetournois and sloriot authored Nov 15, 2024
1 parent 7c156fa commit 7632a01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lab/demo/Lab/Plugins/IO/OM_io_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,13 +181,13 @@ save(QFileInfo fileinfo, QList<CGAL::Three::Scene_item*>& items)
, *sm_item->face_graph()
, CGAL::parameters::vertex_is_constrained_map(selection_item->constrained_vertices_pmap())
.edge_is_constrained_map(selection_item->constrained_edges_pmap())
.stream_precision(18));
.stream_precision(17));
}
else
{
res = CGAL::IO::write_OM((const char*)fileinfo.filePath().toUtf8()
, *sm_item->face_graph()
, CGAL::parameters::stream_precision(18));
, CGAL::parameters::stream_precision(17));
}

if (res)
Expand Down

0 comments on commit 7632a01

Please sign in to comment.