Fix formatting

This commit is contained in:
Mael Rouxel-Labbé 2019-10-20 19:45:14 +02:00
parent 8a1dd342ea
commit 784c8b09d2
1 changed files with 7 additions and 9 deletions

View File

@ -272,15 +272,13 @@ get_placement(pf) : function object computing the placement for the
visitor(vis) : function object tracking the simplification process
*/
int r = edge_collapse(surface_mesh
,stop_predicate
,vertex_index_map(vimap)
.edge_index_map(eimap)
.edge_is_border_map(ebmap)
.get_cost(cf)
.get_placement(pf)
.visitor(vis)
);
int r = edge_collapse(surface_mesh, stop_predicate,
CGAL::parameters::vertex_index_map(vimap)
.edge_index_map(eimap)
.edge_is_border_map(ebmap)
.get_cost(cf)
.get_placement(pf)
.visitor(vis));
\endcode