mirror of https://github.com/CGAL/cgal
More testsuite/polyhedron fixes
This commit is contained in:
parent
b9ff787e7b
commit
7b30693cd7
|
|
@ -5,4 +5,3 @@ Algebraic_foundations
|
|||
Circulator
|
||||
Stream_support
|
||||
Triangulation_2
|
||||
BGL
|
||||
|
|
|
|||
|
|
@ -597,12 +597,12 @@ where the labeled image is used with a precomputed 3D image of weights :
|
|||
if (weights_.is_valid())
|
||||
{
|
||||
return Labeled_mesh_domain_3
|
||||
(create_weighted_labeled_image_wrapper
|
||||
(p::function(create_weighted_labeled_image_wrapper
|
||||
(image_,
|
||||
weights_,
|
||||
image_values_to_subdomain_indices_,
|
||||
value_outside_),
|
||||
Mesh_3::internal::compute_bounding_box(image_),
|
||||
value_outside_)),
|
||||
p::bounding_object(Mesh_3::internal::compute_bounding_box(image_)),
|
||||
p::relative_error_bound = relative_error_bound_,
|
||||
p::p_rng = p_rng_,
|
||||
p::null_subdomain_index =
|
||||
|
|
@ -613,11 +613,11 @@ where the labeled image is used with a precomputed 3D image of weights :
|
|||
else
|
||||
{
|
||||
return Labeled_mesh_domain_3
|
||||
(create_labeled_image_wrapper
|
||||
(p::function(create_labeled_image_wrapper
|
||||
(image_,
|
||||
image_values_to_subdomain_indices_,
|
||||
value_outside_),
|
||||
Mesh_3::internal::compute_bounding_box(image_),
|
||||
value_outside_)),
|
||||
p::bounding_object(Mesh_3::internal::compute_bounding_box(image_)),
|
||||
p::relative_error_bound = relative_error_bound_,
|
||||
p::p_rng = p_rng_,
|
||||
p::null_subdomain_index =
|
||||
|
|
|
|||
|
|
@ -232,7 +232,7 @@ initialize(const Mesh_criteria& criteria, Mesh_fnt::Domain_tag)
|
|||
criteria,
|
||||
p_.protect_features,
|
||||
p::mesh_3_options(p::pointer_to_stop_atomic_boolean = &stop_,
|
||||
p::nonlinear_growth_of_balls = true));
|
||||
p::nonlinear_growth_of_balls = true).v);
|
||||
}
|
||||
|
||||
template < typename D_, typename Tag >
|
||||
|
|
|
|||
|
|
@ -171,7 +171,7 @@ Optimizer_thread* cgal_code_optimization(Scene_c3t3_item& c3t3_item,
|
|||
p_function->bbox().zmax());
|
||||
|
||||
Function_mesh_domain* p_domain =
|
||||
new Function_mesh_domain(Function_wrapper(*p_function), dom_bbox, 1e-7,
|
||||
new Function_mesh_domain(CGAL::parameters::function = Function_wrapper(*p_function), CGAL::parameters::bounding_object = dom_bbox, CGAL::parameters::relative_error_bound = 1e-7,
|
||||
CGAL::parameters::construct_surface_patch_index =
|
||||
[](int i, int j) { return (i * 1000 + j); } );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue