Skip to content

Commit

Permalink
COMP: Missing "\ingroup ITKMesh" doxygen setting
Browse files Browse the repository at this point in the history
"\ingroup ITKMesh" not set in class TriangleMeshCurvatureCalculatorEnum.
  • Loading branch information
hjmjohnson authored and dzenanz committed Aug 21, 2022
1 parent cb4f17f commit bdf5dca
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Modules/Core/Mesh/include/itkTriangleMeshCurvatureCalculator.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,10 @@

namespace itk
{
/** \class TriangleMeshCurvatureCalculator
* \brief
* Calculator to compute curvature of a triangle mesh. Set the input triangle mesh and the
* required curvature type first. Default curvature type is Gauss. After computing curvature the result
* can be obtained using the getter method. It throws exception if the input mesh is not set.
* The implementation is the same as in VTK.
* \ingroup ITKMesh
*/

/** \class TriangleMeshCurvatureCalculatorEnum
* \brief Different modes of operation. Currently only Gaussian curvature is supported.
* Using enum for future extension to Mean, Max and Min curvature.
* \ingroup ITKMesh
*/
class TriangleMeshCurvatureCalculatorEnums
{
Expand All @@ -64,6 +56,14 @@ class TriangleMeshCurvatureCalculatorEnums
extern ITKMesh_EXPORT std::ostream &
operator<<(std::ostream & out, const TriangleMeshCurvatureCalculatorEnums::Curvatures value);

/** \class TriangleMeshCurvatureCalculator
* \brief
* Calculator to compute curvature of a triangle mesh. Set the input triangle mesh and the
* required curvature type first. Default curvature type is Gauss. After computing curvature the result
* can be obtained using the getter method. It throws exception if the input mesh is not set.
* The implementation is the same as in VTK.
* \ingroup ITKMesh
*/
template <typename TInputMesh>
class ITK_TEMPLATE_EXPORT TriangleMeshCurvatureCalculator : public Object
{
Expand Down

0 comments on commit bdf5dca

Please sign in to comment.