Missing enum documentation in enum Three package
albert-github opened this issue · 0 comments
albert-github commented
In the include/CGAL/Three/Triangle_container.h
file of the Three
package we see:
//! \brief The vbosName enum
//!
//! Holds the `Vbo` Ids of this container.
//!
enum vbosName {
Flat_vertices = 0, //!< Designates the buffer that contains the flat vertex coordinates (not indexed).
Smooth_vertices, //!< Designates the buffer that contains the smooth vertex coordinates (indexed).
Vertex_indices, //!< Designates the buffer that contains the indices for the smooth vertices.
Flat_normals, //!< Designates the buffer that contains the normals for the flat vertices.
Smooth_normals, //!< Designates the buffer that contains the normals for the smooth vertices.
Facet_centers, //!< Designates the buffer that contains the barycenters of the c3t3 facets or the center of the spheres.
Radius, //!< Designates the buffer that contains the radius of the spheres.
VColors, //!< Designates the buffer that contains the colors of the smooth vertices.
FColors, //!< Designates the buffer that contains the colors of the flat vertices.
Texture_map, //!< Designates the buffer that contains the UV map for the texture.
Distances,
Subdomain_indices, //!< Designates the buffer that contains the subdomains of both cells defining a c3t3 facet.
NbOfVbos //!< Designates the size of the VBOs vector for `Triangle_container`s
};
i.e. the documentation of the enum field Distances
is missing.
This should be corrected.