fix reading of vtp files

This commit is contained in:
Laurent Rineau 2023-10-12 16:41:25 +02:00
parent 8a4b492f1c
commit 98a5f2f490
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ bool read_polygon_soup(const std::string& fname,
else if(ext == "ts")
return read_GOCAD(fname, points, polygons, np);
#ifdef CGAL_USE_VTK
else if(ext == "ts")
else if(ext == "vtp")
return read_VTP(fname, points, polygons, np);
#endif