Skip to content
Snippets Groups Projects
Commit 9cb21ed4 authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[geometry][isectpointsimplex] fix doc

parent edeec221
No related branches found
No related tags found
1 merge request!2431Cleanup/isect point simplex
...@@ -159,7 +159,7 @@ bool intersectsPointSimplex(const Dune::FieldVector<ctype, dimworld>& point, ...@@ -159,7 +159,7 @@ bool intersectsPointSimplex(const Dune::FieldVector<ctype, dimworld>& point,
/*! /*!
* \ingroup Geometry * \ingroup Geometry
* \brief Find out whether a point is inside a interval (p0, p1, p2, p3) (dimworld is 3) * \brief Find out whether a point is inside a interval (p0, p1) (dimworld is 2 or 3)
* \note We assume the given interval has non-zero length and use it to scale the epsilon * \note We assume the given interval has non-zero length and use it to scale the epsilon
*/ */
template<class ctype, int dimworld, typename std::enable_if_t<(dimworld == 3 || dimworld == 2), int> = 0> template<class ctype, int dimworld, typename std::enable_if_t<(dimworld == 3 || dimworld == 2), int> = 0>
...@@ -186,7 +186,7 @@ bool intersectsPointSimplex(const Dune::FieldVector<ctype, dimworld>& point, ...@@ -186,7 +186,7 @@ bool intersectsPointSimplex(const Dune::FieldVector<ctype, dimworld>& point,
/*! /*!
* \ingroup Geometry * \ingroup Geometry
* \brief Find out whether a point is inside a interval (p0, p1, p2, p3) (dimworld is 1) * \brief Find out whether a point is inside a interval (p0, p1) (dimworld is 1)
*/ */
template<class ctype, int dimworld, typename std::enable_if_t<(dimworld == 1), int> = 0> template<class ctype, int dimworld, typename std::enable_if_t<(dimworld == 1), int> = 0>
bool intersectsPointSimplex(const Dune::FieldVector<ctype, dimworld>& point, bool intersectsPointSimplex(const Dune::FieldVector<ctype, dimworld>& point,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment