suggestions from Mael

Co-authored-by: Mael <mael.rouxel.labbe@geometryfactory.com>
This commit is contained in:
Sebastien Loriot 2025-10-17 10:28:57 +02:00 committed by GitHub
parent 865c1d2ed7
commit 878ba3fc53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -431,13 +431,14 @@ bool fill_simplex_specific_header(std::ostream& os,
{ {
using CGAL::parameters::choose_parameter; using CGAL::parameters::choose_parameter;
using CGAL::parameters::get_parameter; using CGAL::parameters::get_parameter;
typedef Surface_mesh<Point> SMesh; typedef Surface_mesh<Point> SMesh;
typedef typename SMesh::Vertex_index VIndex; typedef typename SMesh::Vertex_index VIndex;
typedef typename Kernel_traits<Point>::Kernel Kernel; typedef typename Kernel_traits<Point>::Kernel Kernel;
typedef typename Kernel::FT FT; typedef typename Kernel::FT FT;
typedef typename Kernel::Vector_3 Vector; typedef typename Kernel::Vector_3 Vector;
typedef typename GetVertexPointMap<Surface_mesh<Point>, NamedParameter>::const_type Point_map; typedef typename GetVertexPointMap<SMesh, NamedParameter>::const_type Point_map;
typedef typename SMesh::template Property_map<VIndex, Vector> Vector_map; typedef typename SMesh::template Property_map<VIndex, Vector> Vector_map;
typedef typename SMesh::template Property_map<VIndex, Color> Vcolor_map; typedef typename SMesh::template Property_map<VIndex, Color> Vcolor_map;
@ -510,7 +511,6 @@ bool fill_simplex_specific_header(std::ostream& os,
auto fvnm = CGAL::make_cartesian_converter_property_map<Epick::Vector_3>(*pmap); auto fvnm = CGAL::make_cartesian_converter_property_map<Epick::Vector_3>(*pmap);
printers.push_back(new Property_printer<VIndex, decltype(fvnm)>(fvnm)); printers.push_back(new Property_printer<VIndex, decltype(fvnm)>(fvnm));
} }
// printers.push_back(new Property_printer<VIndex, Vector_map>(*pmap));
return true; return true;
} }
} }