Put functions in their own group

This commit is contained in:
Andreas Fabri 2019-04-03 10:26:03 +02:00
parent 032a7aaec4
commit 72787fb8ad
1 changed files with 13 additions and 1 deletions

View File

@ -78,8 +78,14 @@ Angle angle(const CGAL::Point_3<Kernel>&p,
const CGAL::Point_3<Kernel>&r,
const CGAL::Vector_3<Kernel>&v);
/// @}
/// \defgroup approximate_angle_grp CGAL::approximate_angle()
/// \ingroup kernel_global_function
/// @{
/*!
returns an approximation of the angle between `p-q` and `r-q`.
The angle is given in degrees.
@ -98,7 +104,13 @@ The angle is given in degrees.
template <typename Kernel>
Kernel::FT approximate_angle(const CGAL::Vector_3<Kernel>& u,
const CGAL::Vector_3<Kernel>& v);
/// @}
/// \defgroup approximate_dihedral_angle_grp CGAL::approximate_dihedral_angle()
/// \ingroup kernel_global_function
/// @{
/*!
returns an approximation of the signed dihedral angle in the tetrahedron `pqrs` of edge `pq`.
The sign is negative if `orientation(p,q,r,s)` is `CGAL::NEGATIVE` and positive otherwise.