From a2308a8e7d1e830bff8a43fd2263f58cb7e9bc75 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 7 Oct 2014 14:37:22 +0200 Subject: [PATCH] operator << and >> do not support normals or textures --- Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h b/Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h index 26874dddf2f..f89c2286f3e 100644 --- a/Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h +++ b/Surface_mesh/include/CGAL/Surface_mesh/Surface_mesh.h @@ -2084,7 +2084,7 @@ private: //------------------------------------------------------- private data /// \relates Surface_mesh /// Inserts the surface mesh in an output stream in Ascii OFF format. - /// If the vertices have the property "v:normal" it is also inserted in the stream. + /// None of the proprties is inserted in the stream. /// \note `operator<<(std::ostream&,const P&)` must be defined. template std::ostream& operator<<(std::ostream& os, const Surface_mesh

& sm) @@ -2113,7 +2113,7 @@ private: //------------------------------------------------------- private data } /// \relates Surface_mesh /// Extracts the surface mesh from an input stream in Ascii OFF format. - /// If the vertices have the property "v:normal" it is also extracted from the stream. + /// The operator does not read files with vertex normals or textures. /// \note `operator>>(std::istream&,const P&)` must be defined. template std::istream& operator>>(std::istream& is, Surface_mesh

& sm)