Skip to content

Commit

Permalink
Require a FaceGraph for boundary checks
Browse files Browse the repository at this point in the history
  • Loading branch information
MaelRL committed Feb 6, 2025
1 parent 76e47d4 commit 07d7615
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace Polygon_mesh_processing {
*
* The angle sum is given in degrees.
*
* @tparam PolygonMesh a model of `HalfedgeGraph`
* @tparam PolygonMesh a model of `FaceGraph`
* @tparam NamedParameters a sequence of \ref bgl_namedparameters "Named Parameters"
*
* @param v the vertex whose sum of angles is computed
Expand Down Expand Up @@ -114,7 +114,7 @@ angle_sum(typename boost::graph_traits<PolygonMesh>::vertex_descriptor v,
*
* We refer to Meyer et al. \cgalCite{cgal:mdsb-ddgot-02} for the definition of <i>discrete Gaussian curvature</i>.
*
* @tparam TriangleMesh a model of `HalfedgeGraph`
* @tparam TriangleMesh a model of `FaceGraph`
* @tparam NamedParameters a sequence of \ref bgl_namedparameters "Named Parameters"
*
* @param v the vertex whose discrete Gaussian curvature is being computed
Expand Down Expand Up @@ -227,7 +227,7 @@ discrete_Gaussian_curvature(typename boost::graph_traits<TriangleMesh>::vertex_d
*
* We refer to Meyer et al. \cgalCite{cgal:mdsb-ddgot-02} for the definition of <i>discrete Gaussian curvature</i>.
*
* @tparam TriangleMesh a model of `HalfedgeGraph`
* @tparam TriangleMesh a model of `FaceGraph`
* @tparam VertexCurvatureMap must be a model of `WritablePropertyMap` with key type
* `boost::graph_traits<TriangleMesh>::%vertex_descriptor` and value type `FT`,
* which is either `geom_traits::FT` if this named parameter is provided,
Expand Down Expand Up @@ -284,7 +284,7 @@ void discrete_Gaussian_curvatures(const TriangleMesh& tmesh,
*
* We refer to Meyer et al. \cgalCite{cgal:mdsb-ddgot-02} for the definition of <i>discrete mean curvature</i>.
*
* @tparam TriangleMesh a model of `HalfedgeGraph`
* @tparam TriangleMesh a model of `FaceGraph`
* @tparam NamedParameters a sequence of \ref bgl_namedparameters "Named Parameters"
*
* @param v the vertex whose discrete mean curvature is being computed
Expand Down Expand Up @@ -425,7 +425,7 @@ discrete_mean_curvature(typename boost::graph_traits<TriangleMesh>::vertex_descr
*
* We refer to Meyer et al. \cgalCite{cgal:mdsb-ddgot-02} for the definition of <i>discrete mean curvature</i>.
*
* @tparam TriangleMesh a model of `HalfedgeGraph`
* @tparam TriangleMesh a model of `FaceGraph`
* @tparam VertexCurvatureMap must be a model of `WritablePropertyMap` with key type
* `boost::graph_traits<TriangleMesh>::%vertex_descriptor` and value type `FT`,
* which is either `geom_traits::FT` if this named parameter is provided,
Expand Down

0 comments on commit 07d7615

Please sign in to comment.