Document the rule

This commit is contained in:
Andreas Fabri 2024-01-18 11:18:14 +00:00
parent e8909924d5
commit ef8d2747ce
1 changed files with 6 additions and 0 deletions

View File

@ -27,8 +27,10 @@ namespace CGAL {
namespace Polygon_repair { namespace Polygon_repair {
#ifndef DOXYGEN_RUNNING
template <class Kernel, class Container> template <class Kernel, class Container>
class Polygon_repair; class Polygon_repair;
#endif
/// \ingroup PkgPolygonRepairFunctions /// \ingroup PkgPolygonRepairFunctions
/// Repair a polygon without holes using /// Repair a polygon without holes using
@ -289,6 +291,8 @@ bool is_valid(const Multipolygon_with_holes_2<Kernel, Container>& multipolygon)
return true; return true;
} }
#ifndef DOXYGEN_RUNNING
template <class Kernel, class Container = std::vector<typename Kernel::Point_2>> template <class Kernel, class Container = std::vector<typename Kernel::Point_2>>
class Polygon_repair { class Polygon_repair {
public: public:
@ -694,6 +698,8 @@ protected:
typename Triangulation::Face_handle search_start; typename Triangulation::Face_handle search_start;
}; };
#endif // DOXYGEN_RUNNING
} // namespace Polygon_repair } // namespace Polygon_repair
} // namespace CGAL } // namespace CGAL