From 8123a841f2a5bef73720eb38e11b92b050b7161e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 30 Jul 2021 10:16:58 +0200 Subject: [PATCH] update to valid format --- Surface_mesh/include/CGAL/Surface_mesh/IO/PLY.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Surface_mesh/include/CGAL/Surface_mesh/IO/PLY.h b/Surface_mesh/include/CGAL/Surface_mesh/IO/PLY.h index b6196d5908c..599ab894517 100644 --- a/Surface_mesh/include/CGAL/Surface_mesh/IO/PLY.h +++ b/Surface_mesh/include/CGAL/Surface_mesh/IO/PLY.h @@ -961,8 +961,8 @@ bool write_PLY(std::ostream& os, if(!eprinters.empty()) { os << "element edge " << sm.number_of_edges() << std::endl; - os << "property int v0" << std::endl; - os << "property int v1" << std::endl; + os << "property int vertex1" << std::endl; + os << "property int vertex2" << std::endl; os << oss.str(); } }