Doc fixes

This commit is contained in:
Mael Rouxel-Labbé 2020-01-31 12:14:11 +01:00
parent c483680ad8
commit 5f1eed5048
2 changed files with 9 additions and 9 deletions

View File

@ -34,6 +34,6 @@ public:
/// Returns the unitary matrix `Q` obtained in the QR-decomposition of the matrix `m`
Matrix get_Q(const Matrix& m) const;
/// Gives access to the `Construct_bbox_3` construction object
/// Returns the 3D box construction functor
Construct_bbox_3 construct_bbox_3_object() const;
};

View File

@ -246,11 +246,11 @@ template <typename PointRange,
typename CGAL_BGL_NP_TEMPLATE_PARAMETERS>
void oriented_bounding_box(const PointRange& points,
Output& out,
const CGAL_BGL_NP_CLASS& np,
const CGAL_BGL_NP_CLASS& np
#ifndef DOXYGEN_RUNNING
typename boost::enable_if<
typename boost::has_range_iterator<PointRange>
>::type* = 0
, typename boost::enable_if<
typename boost::has_range_iterator<PointRange>
>::type* = 0
#endif
)
{
@ -326,11 +326,11 @@ template <typename PolygonMesh,
typename CGAL_BGL_NP_TEMPLATE_PARAMETERS>
void oriented_bounding_box(const PolygonMesh& pmesh,
Output& out,
const CGAL_BGL_NP_CLASS& np,
const CGAL_BGL_NP_CLASS& np
#ifndef DOXYGEN_RUNNING
typename boost::disable_if<
typename boost::has_range_iterator<PolygonMesh>
>::type* = 0
, typename boost::disable_if<
typename boost::has_range_iterator<PolygonMesh>
>::type* = 0
#endif
)
{