Documentation update

This commit is contained in:
Ivan Paden 2023-08-24 17:50:16 +02:00
parent 237e915d2b
commit ec1793f54d
2 changed files with 8 additions and 5 deletions

View File

@ -44,7 +44,10 @@ namespace Polygon_mesh_processing
*/
template <class PolygonMesh,
class VPMap = typename boost::property_map<PolygonMesh, CGAL::vertex_point_t>::const_type>
class Uniform_sizing_field : public Sizing_field_base<PolygonMesh, VPMap>
class Uniform_sizing_field
#ifndef DOXYGEN_RUNNING
: public Sizing_field_base<PolygonMesh, VPMap>
#endif
{
private:
typedef Sizing_field_base<PolygonMesh, VPMap> Base;

View File

@ -51,8 +51,8 @@ namespace Polygon_mesh_processing {
* @param pmesh a polygon mesh with triangulated surface patches to be remeshed
* @param faces the range of triangular faces defining one or several surface patches to be remeshed
* @param sizing uniform or adaptive sizing field that determines a target length for individual edges.
* If a float is passed (i.e. sizing is convertible to a double), it will use a `Uniform_sizing_field()`
* with the float as a target edge length.
* If a number convertible to a double is passed, it will use a `Uniform_sizing_field()`
* with the number as a target edge length.
* If `0` is passed then only the edge-flip, tangential relaxation, and projection steps will be done.
* @param np an optional sequence of \ref bgl_namedparameters "Named Parameters" among the ones listed below
*
@ -381,8 +381,8 @@ void isotropic_remeshing(const FaceRange& faces
*
* @param pmesh a polygon mesh
* @param edges the range of edges to be split if they are longer than given threshold
* @param sizing the sizing function that is used to split edges from 'edges' list. If a float is passed (i.e. sizing
* is convertible to a double), it will use a `Uniform_sizing_field()` with the float as a target edge length.
* @param sizing the sizing function that is used to split edges from 'edges' list. If a number convertible to
* a double is passed, it will use a `Uniform_sizing_field()` with the number as a target edge length.
* @param np an optional sequence of \ref bgl_namedparameters "Named Parameters" among the ones listed below
* \cgalNamedParamsBegin