mirror of https://github.com/CGAL/cgal
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)
This commit is contained in:
parent
4ada5baa76
commit
7bfa33f9e4
|
|
@ -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.
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue