From 7bfa33f9e45020f65480e37ef93f4a5fe01a2394 Mon Sep 17 00:00:00 2001 From: albert-github Date: Fri, 4 Jun 2021 14:01:47 +0200 Subject: [PATCH] Incorrect documentation for enum in Three package Though not yet released ... The documentation after the enum values signal, according to the text, documentation after the enum value but the used documentation starter `//!` is incorrect, should be `//!<`. (see results on page doc_output/Three/group__PkgThreeRef.html) --- Three/include/CGAL/Three/Scene_interface.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Three/include/CGAL/Three/Scene_interface.h b/Three/include/CGAL/Three/Scene_interface.h index c4b0a619396..2290fb6642a 100644 --- a/Three/include/CGAL/Three/Scene_interface.h +++ b/Three/include/CGAL/Three/Scene_interface.h @@ -26,15 +26,15 @@ */ enum RenderingMode { - Points = 0, //! Renders only points without lighting. - PointsPlusNormals, //!Renders points and normals. - Wireframe, //!Renders only edges. - Flat, //!Renders only faces, with a lighting per face. - FlatPlusEdges, //!Renders flat faces and edges. - Gouraud, //!Renders only faces, with a lighting per vertex. - GouraudPlusEdges, //!Renders faces with a lighting per vertex, and edges. - ShadedPoints, //!Renders only points with lighting. - NumberOfRenderingMode //!Number of values in this enum. + Points = 0, //!< Renders only points without lighting. + PointsPlusNormals, //!< Renders points and normals. + Wireframe, //!< Renders only edges. + Flat, //!< Renders only faces, with a lighting per face. + FlatPlusEdges, //!< Renders flat faces and edges. + Gouraud, //!< Renders only faces, with a lighting per vertex. + GouraudPlusEdges, //!< Renders faces with a lighting per vertex, and edges. + ShadedPoints, //!< Renders only points with lighting. + NumberOfRenderingMode //!< Number of values in this enum. };