rename visitor concept

This commit is contained in:
Sébastien Loriot 2021-08-05 18:11:26 +02:00
parent b539d4a301
commit 17ca9d86dc
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
/// \ingroup PkgPolygonMeshProcessingConcepts
/// \cgalConcept
///
/// The concept `PMPOrientationVisitor` defines the requirements for the visitor
/// The concept `PMPPolygonSoupOrientationVisitor` defines the requirements for the visitor
/// used in `CGAL::Polygon_mesh_processing::orient_polygon_soup()` to track
/// the detection of non-manifold simplices and the modifications performed to polygons
/// during the orientation process.
@ -9,7 +9,7 @@
/// \cgalRefines `CopyConstructible`
/// \cgalHasModel `CGAL::Polygon_mesh_processing::Default_orientation_visitor`.
class PMPOrientationVisitor{
class PMPPolygonSoupOrientationVisitor{
public:
/// @name Functions used to report non-manifold simplices.

View File

@ -39,7 +39,7 @@ namespace CGAL {
namespace Polygon_mesh_processing {
/** \ingroup PMP_orientation_grp
* Default visitor model of `PMPOrientationVisitor`.
* Default visitor model of `PMPPolygonSoupOrientationVisitor`.
* All of its functions have an empty body. This class can be used as a
* base class if only some of the functions of the concept require to be
* overridden.
@ -513,7 +513,7 @@ struct Polygon_soup_orienter
* \cgalNamedParamsBegin
* \cgalParamNBegin{visitor}
* \cgalParamDescription{a visitor used to be notified of the presence of non-manifold simplices and of the modifications done to polygons during orientation.}
* \cgalParamType{a class model of `PMPOrientationVisitor`}
* \cgalParamType{a class model of `PMPPolygonSoupOrientationVisitor`}
* \cgalParamDefault{`Default_orientation_visitor`}
* \cgalParamNEnd
* \cgalNamedParamsEnd