mirror of https://github.com/CGAL/cgal
Document the rule
This commit is contained in:
parent
e8909924d5
commit
ef8d2747ce
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue