Added EPIC exact tag for the (two relevant) global functions.

This commit is contained in:
Michael Hoffmann 2023-04-27 15:34:53 +02:00
parent cfa16aa95f
commit 003ce240b6
2 changed files with 8 additions and 0 deletions

View File

@ -204,6 +204,10 @@ are trivial:</p>
<li> `FT Iso_cuboid_3::min_coord(int)`
<li> `FT Iso_cuboid_3::max_coord(int)`
<li> `Bbox_3 Iso_cuboid_3::bbox()`
<li> `Point_2 min_vertex(Iso_rectangle_2)`
<li> `Point_2 min_vertex(Iso_cuboid_3)`
<li> `Point_2 max_vertex(Iso_rectangle_2)`
<li> `Point_2 max_vertex(Iso_cuboid_3)`
</ul>
\cgalModels `Kernel`

View File

@ -2242,12 +2242,14 @@ const CGAL::Point_3<Kernel>& q);
/*!
computes the vertex with the lexicographically largest coordinates of the iso rectangle `ir`.
\cgalEpicExact
*/
template <typename Kernel>
CGAL::Point_2<Kernel> max_vertex( const CGAL::Iso_rectangle_2<Kernel>& ir );
/*!
computes the vertex with the lexicographically largest coordinates of the iso cuboid `ic`.
\cgalEpicExact
*/
template <typename Kernel>
CGAL::Point_3<Kernel> max_vertex( const CGAL::Iso_cuboid_3<Kernel>& ic );
@ -2292,12 +2294,14 @@ CGAL::Point_3<Kernel> midpoint( const CGAL::Segment_3<Kernel>& s );
/*!
computes the vertex with the lexicographically smallest coordinates of the iso rectangle `ir`.
\cgalEpicExact
*/
template <typename Kernel>
CGAL::Point_2<Kernel> min_vertex( const CGAL::Iso_rectangle_2<Kernel>& ir );
/*!
computes the vertex with the lexicographically smallest coordinates of the iso cuboid `ic`.
\cgalEpicExact
*/
template <typename Kernel>
CGAL::Point_3<Kernel> min_vertex( const CGAL::Iso_cuboid_3<Kernel>& ic );