computes the interpolated corrected curvatures across the mesh pmesh.
By providing mean, Gaussian and/or principal curvature and direction property maps as named parameters, the user can choose which quantities to compute.
Note
This function depends on the Eigen 3.1 (or later) library.
an optional sequence of Named Parameters among the ones listed below. GT stands for the type of the object provided to the named parameter geom_traits().
Optional Named Parameters
a property map associating mean curvatures to the vertices of pmesh.
Type: a class model of WritablePropertyMap with boost::graph_traits<PolygonMesh>::vertex_descriptor as key type and GT::FT as value type
Extra: If this parameter is omitted, mean curvatures will not be computed.
a property map associating Gaussian curvatures to the vertices of pmesh.
Type: a class model of WritablePropertyMap with boost::graph_traits<PolygonMesh>::vertex_descriptor as key type and GT::FT as value type.
Extra: If this parameter is omitted, Gaussian curvatures will not be computed.
a property map associating principal curvatures and directions to the vertices of pmesh.
Extra: If this parameter is omitted, principal curvatures and directions will not be computed.
a strictly positive scalar value specifying the radius used for expanding curvature measures by summing measures of faces inside a ball of this radius centered at the vertex expanded from. The summed face measures are weighted by their inclusion ratio inside this ball.
Type: GT::FT
Default: -1
Extra: If this parameter is omitted (-1), the expansion is then just a sum of measures on faces around the vertex.
a property map associating points to the vertices of pmesh.
Type: a class model of ReadablePropertyMap with boost::graph_traits<PolygonMesh>::vertex_descriptor as key type and GT::Point_3 as value type.
Default: boost::get(CGAL::vertex_point, pmesh).
Extra: If this parameter is omitted, an internal property map for CGAL::vertex_point_t must be available in PolygonMesh.
a property map associating normal vectors to the vertices of pmesh.
Type: a class model of ReadablePropertyMap with boost::graph_traits<PolygonMesh>::vertex_descriptor as key type and GT::Vector_3 as value type.
computes the interpolated corrected curvatures at a vertex v.
By providing mean, Gaussian and/or principal curvature and direction property maps as named parameters, the user can choose which quantities to compute.
Note
This function depends on the Eigen 3.1 (or later) library.
an optional sequence of Named Parameters among the ones listed below. GT stands for the type of the object provided to the named parameter geom_traits().
Optional Named Parameters
a reference to a scalar value to store the mean curvature at the vertex v.
Type: std::reference_wrapper<GT::FT>.
Extra: If this parameter is omitted, mean curvature will not be computed.
a reference to a scalar value to store the Gaussian curvature at the vertex v.
Type: std::reference_wrapper<GT::FT>.
Extra: If this parameter is omitted, Gaussian curvature will not be computed.
Extra: If this parameter is omitted, principal curvatures and directions will not be computed.
a scalar value specifying the radius used for expanding curvature measures by summing measures of faces inside a ball of this radius centered at the vertex expanded from. The summed face measures are weighted by their inclusion ratio inside this ball.
Type: GT::FT
Default: -1
Extra: If this parameter is omitted (-1), the expansion is then just a sum of measures on faces around the vertex.
a property map associating points to the vertices of pmesh.
Type: a class model of ReadablePropertyMap with boost::graph_traits<PolygonMesh>::vertex_descriptor as key type and GT::Point_3 as value type.
Default: boost::get(CGAL::vertex_point, pmesh).
Extra: If this parameter is omitted, an internal property map for CGAL::vertex_point_t must be available in PolygonMesh.
a property map associating normal vectors to the vertices of pmesh.
Type: a class model of ReadablePropertyMap with boost::graph_traits<PolygonMesh>::vertex_descriptor as key type and GT::Vector_3 as value type.