Use default parameterizer in extensive test of surface mesh parameterizer

This commit is contained in:
Simon Giraudot 2015-09-07 08:09:39 +02:00
parent 4e74f7e1da
commit e5fb24e3c4
1 changed files with 3 additions and 4 deletions

View File

@ -407,10 +407,9 @@ int main(int argc, char * argv[])
err = CGAL::parameterize(
mesh_patch,
CGAL::Discrete_authalic_parameterizer_3<
Mesh_patch_polyhedron,
CGAL::Square_border_arc_length_parameterizer_3<Mesh_patch_polyhedron>,
CGAL::Eigen_solver_traits<>
>());
Mesh_patch_polyhedron,
CGAL::Square_border_arc_length_parameterizer_3<Mesh_patch_polyhedron> >()
);
switch(err) {
case Parameterizer::OK: // Success
break;