Fix doc issue

This commit is contained in:
Ivan Pađen 2023-09-28 21:11:44 -06:00
parent 178d967d4b
commit 5c093c2491
2 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ typedef unspecified_type FT;
std::optional<FT> is_too_long(const halfedge_descriptor h,
const PolygonMesh& pmesh) const;
/// a function controlling edge split and edge collapse,
/// a function controlling edge split and edge collapse,
/// returning the squared distance between the points of `va` and `vb`
/// if an edge between `va` and `vb` would be too long, and `std::nullopt` otherwise.
std::optional<FT> is_too_long(const vertex_descriptor va,

View File

@ -70,7 +70,7 @@ public:
/// \name Creation
/// @{
/*!
* constructor
* Constructor
*
* @tparam FaceRange range of `boost::graph_traits<PolygonMesh>::%face_descriptor`,
* model of `Range`. Its iterator type is `ForwardIterator`.
@ -78,7 +78,7 @@ public:
*
* @param tol the error tolerance, used together with curvature to derive target edge length.
* Lower tolerance values will result in shorter mesh edges.
* @param edge_len_min_max contains the bounds for minimum and maximum
* @param edge_len_min_max contains the bounds for minimum and maximum
* edge lengths
* @param face_range the range of triangular faces defining one or several surface patches
* to be remeshed. It should be the same as the range of faces passed to `isotropic_remeshing()`.