The function odt_optimize_mesh_3 is a mesh optimization process based on the minimization of a global energy function.
In odt_optimize_mesh_3, the minimized global energy may be interpreted as the L1-norm of the error achieved when the function x2 is interpolated on the mesh domain using a piecewise linear function which is linear in each mesh cell.
The optimizer odt_optimize_mesh_3 works in iterative steps. At each iteration, mesh vertices are moved into positions that bring to zero the energy gradient and the Delaunay triangulation is updated. Vertices on the mesh boundaries are handled in a special way so as to preserve an accurate representation of the domain boundaries.
#include <CGAL/odt_optimize_mesh_3.h>
| ||||
|
|
Precondition
time_limit ≥ 0 and 0 ≤ convergence ≤ 1 and 0 ≤ freeze_bound ≤ 1
Parameter C3T3 is required to be a model of the concept MeshComplex_3InTriangulation_3. The argument c3t3, passed by reference, provides the initial mesh and is modified by the algorithm to represent the final optimized mesh.
Parameter MeshDomain is required to be a model of the concept MeshDomain_3. The argument domain must be the MeshDomain object used to create the c3t3 parameter.
The function has four optional parameters which are named parameters (we use the Boost.Parameters library). Therefore, when calling the function, the parameters can be provided in any order provided that the names of the parameters are used (see example at the bottom of this page).
Mesh_optimization_return_code
make_mesh_3
refine_mesh_3
exude_mesh_3
perturb_mesh_3
lloyd_optimize_mesh_3
// 100 iterations of Odt-smoothing odt_optimize_mesh_3(c3t3, domain, parameters::max_iteration_number=100, parameters::convergence=0);