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` /// Returns the unitary matrix `Q` obtained in the QR-decomposition of the matrix `m`
Matrix get_Q(const Matrix& m) const; 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; Construct_bbox_3 construct_bbox_3_object() const;
}; };

View File

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