mirror of https://github.com/CGAL/cgal
Added EPIC exact tag for the (two relevant) global functions.
This commit is contained in:
parent
cfa16aa95f
commit
003ce240b6
|
|
@ -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`
|
||||
|
|
|
|||
|
|
@ -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 );
|
||||
|
|
|
|||
Loading…
Reference in New Issue