This commit is contained in:
Sébastien Loriot 2023-04-23 18:54:12 +02:00
parent 99e7f4806a
commit 5a8736d666
2 changed files with 2 additions and 2 deletions

View File

@ -1959,7 +1959,7 @@ private:
/*! /*!
* @brief checks if a vertex is attached with an anchor. * @brief checks if a vertex is attached with an anchor.
* @tparam VertexAnchorIndexMap `ReadablePropertyMap` * @tparam VertexAnchorIndexMap `ReadablePropertyMap`
* with `boost::graph_traights<TriangleMesh>::vertex_descriptor` as key and `std::size_t` as value type * with `boost::graph_traits<TriangleMesh>::vertex_descriptor` as key and `std::size_t` as value type
* @param vtx a vertex descriptor * @param vtx a vertex descriptor
* @param vanchor_map vertex anchor index map * @param vanchor_map vertex anchor index map
*/ */

View File

@ -26,7 +26,7 @@ fills the face graph `tm` with the <A HREF="https://en.wikipedia.org/wiki/Simpli
*/ */
template <class Triangulation, class TriangleMesh> template <class Triangulation, class TriangleMesh>
typename boost::graph_trait<FG>::vertex_descriptor typename boost::graph_traits<FG>::vertex_descriptor
link_to_face_graph(const Triangulation& t, link_to_face_graph(const Triangulation& t,
typename Triangulation::Vertex_handle vh, typename Triangulation::Vertex_handle vh,
TriangleMesh& tm, TriangleMesh& tm,