remove useless specification of PolygonMesh

This commit is contained in:
Jane Tournois 2015-02-17 15:40:50 +01:00
parent 57fc563e64
commit 755d7c8049
1 changed files with 2 additions and 2 deletions

View File

@ -67,11 +67,11 @@ int main(int,char** ) {
if(oriented) {
Surface_mesh mesh;
CGAL::Polygon_mesh_processing::polygon_soup_to_polygon_mesh<Surface_mesh>(
CGAL::Polygon_mesh_processing::polygon_soup_to_polygon_mesh(
points, polygons, mesh);
Polyhedron poly;
CGAL::Polygon_mesh_processing::polygon_soup_to_polygon_mesh<Polyhedron>(
CGAL::Polygon_mesh_processing::polygon_soup_to_polygon_mesh(
points, polygons, poly);
std::ofstream out("oriented.off");