From 98a5f2f490129dfb11a5de5d43a4e1088b2871b8 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 12 Oct 2023 16:41:25 +0200 Subject: [PATCH] fix reading of vtp files --- Stream_support/include/CGAL/IO/polygon_soup_io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Stream_support/include/CGAL/IO/polygon_soup_io.h b/Stream_support/include/CGAL/IO/polygon_soup_io.h index 098d088680b..74229da797e 100644 --- a/Stream_support/include/CGAL/IO/polygon_soup_io.h +++ b/Stream_support/include/CGAL/IO/polygon_soup_io.h @@ -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