Merge pull request #7710 from sloriot/PMP-coref_visitor_concept

Fix concept doc
This commit is contained in:
Laurent Rineau 2023-09-13 16:07:39 +02:00
commit db008f18e7
1 changed files with 5 additions and 5 deletions

View File

@ -60,21 +60,21 @@ public:
/// \param i_id the id of the intersection point, starting at 0. Ids are consecutive.
/// \param sdim indicates the dimension of the simplex part of the face that is intersected by the edge
/// (0 for a vertex, 1 for an edge, 2 for the interior of the face)
/// \param h_e a halfedge from `tm_e`
/// \param h_f a halfedge from `tm_f` indicating the simplex intersected:
/// if `sdim==0` the target of `h_f` is the intersection point,
/// if `sdim==1` the edge of `h_f` contains the intersection point in its interior,
/// if `sdim==2` the face of `h_f` contains the intersection point in its interior.
/// \param h_e a halfedge from `tm_e`
/// \param tm_e mesh containing `h_e`
/// \param tm_f mesh containing `h_f`
/// \param is_target_coplanar `true` iff the target of `h_e` is the intersection point
/// \param is_source_coplanar `true` iff the source of `h_e` is the intersection point
/// \param tm_f mesh containing `h_f`
/// \param tm_e mesh containing `h_e`
void intersection_point_detected(std::size_t i_id,
int sdim,
halfedge_descriptor h_f,
halfedge_descriptor h_e,
const Triangle_mesh& tm_f,
halfedge_descriptor h_f,
const Triangle_mesh& tm_e,
const Triangle_mesh& tm_f,
bool is_target_coplanar,
bool is_source_coplanar);