We construct explictly wrappers in test_labeled_mesh_domain_3.

This commit is contained in:
Aymeric PELLE 2014-04-15 17:22:10 +02:00
parent f008c28f7f
commit 3de04a47de
1 changed files with 4 additions and 2 deletions

View File

@ -67,10 +67,12 @@ private:
{
FT error_bound(1e-3);
Mesh_domain domain(sphere_function, bounding_shape, error_bound);
Function_wrapper wrapper_1(sphere_function);
Mesh_domain domain(wrapper_1, bounding_shape, error_bound);
test_construct_initial_points(domain, error_bound);
Mesh_domain domain_2(shape_function, bounding_shape, error_bound);
Function_wrapper wrapper_2(shape_function);
Mesh_domain domain_2(wrapper_2, bounding_shape, error_bound);
test_is_in_domain(domain_2);
test_do_intersect_surface(domain_2);
test_construct_intersection(domain_2);