missing space in doc if AutorefinementVisitor

This commit is contained in:
lvalque 2025-05-07 10:44:57 +02:00 committed by GitHub
parent fe028147ae
commit 21e7e681ce
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public:
/// called for each subtriangle created from a triangle with intersection, `tgt_id` is the position in the triangle container after calling /// called for each subtriangle created from a triangle with intersection, `tgt_id` is the position in the triangle container after calling
/// `autorefine_triangle_soup()` of the subtriangle, while `src_id` was the position of the original support triangle before calling the function. /// `autorefine_triangle_soup()` of the subtriangle, while `src_id` was the position of the original support triangle before calling the function.
void new_subtriangle(std::size_t tgt_id, std::size_t src_id); void new_subtriangle(std::size_t tgt_id, std::size_t src_id);
/// called for each input triangle absent in the outputbecause it was degenerate. `src_id` is the position of that triangle in the input range. Additionally, if `apply_iterative_snap_rounding()` is set to `true`, some extra triangles might become degenerate and will be absent in the output. Those triangles are also reported by this function. /// called for each input triangle absent in the output because it was degenerate. `src_id` is the position of that triangle in the input range. Additionally, if `apply_iterative_snap_rounding()` is set to `true`, some extra triangles might become degenerate and will be absent in the output. Those triangles are also reported by this function.
void delete_triangle(std::size_t src_id); void delete_triangle(std::size_t src_id);
/// @} /// @}
}; };