From 27ceec33b5a5fe661bd250c20affeb402f99a194 Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Thu, 21 Mar 2019 16:10:18 +0100 Subject: [PATCH] Replace Weighted point by Point --- Mesh_3/include/CGAL/IO/Complex_3_in_triangulation_3_to_vtk.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mesh_3/include/CGAL/IO/Complex_3_in_triangulation_3_to_vtk.h b/Mesh_3/include/CGAL/IO/Complex_3_in_triangulation_3_to_vtk.h index cecf3aefea1..9d1a9a5d79f 100644 --- a/Mesh_3/include/CGAL/IO/Complex_3_in_triangulation_3_to_vtk.h +++ b/Mesh_3/include/CGAL/IO/Complex_3_in_triangulation_3_to_vtk.h @@ -65,10 +65,10 @@ output_c3t3_to_vtk_unstructured_grid(const C3T3& c3t3, vit != end; ++vit) { - typedef typename Triangulation::Weighted_point Weighted_point; + typedef typename Triangulation::Point Point; if(vit->in_dimension() > -1) { - const Weighted_point& p = tr.point(vit); + const Point& p = tr.point(vit); vtk_points->InsertNextPoint(CGAL::to_double(p.x()), CGAL::to_double(p.y()), CGAL::to_double(p.z()));