change parameter order

This commit is contained in:
Lingjie Zhu 2018-09-04 11:22:21 +02:00
parent 0aa0eac88e
commit 4d5f2ee7ca
4 changed files with 10 additions and 10 deletions

View File

@ -93,18 +93,18 @@ the minimum total error drop to approximate the input mesh.\n
\b Default value is `0.1`
\cgalNPEnd
\cgalNPBegin{nb_of_iterations} \anchor VSA_nb_of_iterations
the number of partitioning and fitting iterations after seeding.\n
\b Type : `std::size_t` \n
\b Default value is `std::min(std::max(nb_of_faces / max_nb_of_proxies, 20), 60)`
\cgalNPEnd
\cgalNPBegin{nb_of_relaxations} \anchor VSA_nb_of_relaxations
the number of relaxation iterations interleaved within seeding.\n
\b Type : `std::size_t` \n
\b Default value is `5`
\cgalNPEnd
\cgalNPBegin{nb_of_iterations} \anchor VSA_nb_of_iterations
the number of partitioning and fitting iterations after seeding.\n
\b Type : `std::size_t` \n
\b Default value is `std::min(std::max(nb_of_faces / max_nb_of_proxies, 20), 60)`
\cgalNPEnd
\cgalNPTableEnd
\cgalHeading{2. Parameters for the Meshing Step}

View File

@ -70,10 +70,10 @@ unspecified_type all_default();
* \cgalParamEnd
* \cgalParamBegin{min_error_drop} minimum error drop of the approximation, expressed in ratio between two iterations of proxy addition.
* \cgalParamEnd
* \cgalParamBegin{nb_of_iterations} number of partitioning and fitting iterations after seeding.
* \cgalParamEnd
* \cgalParamBegin{nb_of_relaxations} number of relaxation iterations interleaved within seeding.
* \cgalParamEnd
* \cgalParamBegin{nb_of_iterations} number of partitioning and fitting iterations after seeding.
* \cgalParamEnd
* \cgalNamedParamsEnd
* \cgalNamedParamsBegin{Meshing Named Parameters}
* \cgalParamBegin{subdivision_ratio} chord subdivision ratio threshold to the chord length or average edge length.

View File

@ -579,7 +579,7 @@ public:
/// \name Refinement Operations
/// @{
/*!
/*!
* @brief Teleports the local minimum to the worst region by combining the merging and adding processes.
* The re-fitting is performed after each teleportation.
* Here if we specify more than one proxy this means we teleport in a naive iterative fashion.

View File

@ -6,8 +6,8 @@ CGAL_add_named_parameter(verbose_level_t, verbose_level, verbose_level)
CGAL_add_named_parameter(seeding_method_t, seeding_method, seeding_method)
CGAL_add_named_parameter(max_nb_of_proxies_t, max_nb_of_proxies, max_nb_of_proxies)
CGAL_add_named_parameter(min_error_drop_t, min_error_drop, min_error_drop)
CGAL_add_named_parameter(nb_of_iterations_t, nb_of_iterations, nb_of_iterations)
CGAL_add_named_parameter(nb_of_relaxations_t, nb_of_relaxations, nb_of_relaxations)
CGAL_add_named_parameter(nb_of_iterations_t, nb_of_iterations, nb_of_iterations)
// meshing parameters
CGAL_add_named_parameter(subdivision_ratio_t, subdivision_ratio, subdivision_ratio)