From 17ca9d86dccd8856616fb7bf2185f5edbdb4ad0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 5 Aug 2021 18:11:26 +0200 Subject: [PATCH] rename visitor concept --- ...rientationVisitor.h => PMPPolygonSoupOrientationVisitor.h} | 4 ++-- .../CGAL/Polygon_mesh_processing/orient_polygon_soup.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename Polygon_mesh_processing/doc/Polygon_mesh_processing/Concepts/{PMPOrientationVisitor.h => PMPPolygonSoupOrientationVisitor.h} (95%) diff --git a/Polygon_mesh_processing/doc/Polygon_mesh_processing/Concepts/PMPOrientationVisitor.h b/Polygon_mesh_processing/doc/Polygon_mesh_processing/Concepts/PMPPolygonSoupOrientationVisitor.h similarity index 95% rename from Polygon_mesh_processing/doc/Polygon_mesh_processing/Concepts/PMPOrientationVisitor.h rename to Polygon_mesh_processing/doc/Polygon_mesh_processing/Concepts/PMPPolygonSoupOrientationVisitor.h index c0b20d83c34..93b40c15cb7 100644 --- a/Polygon_mesh_processing/doc/Polygon_mesh_processing/Concepts/PMPOrientationVisitor.h +++ b/Polygon_mesh_processing/doc/Polygon_mesh_processing/Concepts/PMPPolygonSoupOrientationVisitor.h @@ -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. diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/orient_polygon_soup.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/orient_polygon_soup.h index bcc364ea1a3..6769b9e49a1 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/orient_polygon_soup.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/orient_polygon_soup.h @@ -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