Function

CGAL::parameters::exude

Definition

The function parameters::exude allows the user to trigger a call to exude_mesh_3 in the make_mesh_3 and refine_mesh_3 mesh generation functions. It also allows the user to pass parameters to the optimization function exude_mesh_3 through these mesh generation functions.

#include <CGAL/refine_mesh_3.h>

parameters::internal::Exude parameters::exude ( double parameters::time_limit = 0, double parameters::sliver_bound = 0)

Parameters

The parameters are named parameters. They are the same (i.e. they have the same name and the same default values) as the parameters of exude_mesh_3 function. See its manual page for further details.

Example

// Mesh generation with an exudation step
C3t3 c3t3 = make_mesh_3<c3t3>(domain, criteria, parameters::exude());
refine_mesh_3(c3t3, domain, criteria, parameters::exude(parameters::time_limit=10));

See Also

CGAL::no_exude
CGAL::exude_mesh_3
CGAL::make_mesh_3
CGAL::refine_mesh_3