Add a new test

This test verifies that `Polyhedral_mesh_domain_with_features_3` can
be used without calling `detect_features()`, with both `Polyhedron_3`
and `Surface_mesh`.
This commit is contained in:
Laurent Rineau 2019-02-12 14:38:51 +01:00
parent 24bccaa8ff
commit d94a9d139a
2 changed files with 74 additions and 0 deletions

View File

@ -39,6 +39,7 @@ if ( CGAL_FOUND )
create_single_source_cgal_program( "test_labeled_mesh_domain_3.cpp" )
create_single_source_cgal_program( "test_mesh_criteria_creation.cpp" )
create_single_source_cgal_program( "test_c3t3_into_facegraph.cpp" )
create_single_source_cgal_program( "test_without_detect_features.cpp" )
if(CGAL_ImageIO_USE_ZLIB)
create_single_source_cgal_program( "test_meshing_3D_image.cpp" )
create_single_source_cgal_program( "test_meshing_3D_image_deprecated.cpp" )

View File

@ -0,0 +1,73 @@
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Mesh_triangulation_3.h>
#include <CGAL/Mesh_complex_3_in_triangulation_3.h>
#include <CGAL/Mesh_criteria_3.h>
#include <CGAL/Surface_mesh.h>
#include <CGAL/Polyhedral_mesh_domain_with_features_3.h>
#include <CGAL/make_mesh_3.h>
template <typename K, typename Polyhedron>
struct Tester {
// Domain
typedef CGAL::Polyhedral_mesh_domain_with_features_3<K, Polyhedron> Mesh_domain;
// Triangulation
typedef typename CGAL::Mesh_triangulation_3<Mesh_domain>::type Tr;
typedef CGAL::Mesh_complex_3_in_triangulation_3<Tr> C3t3;
// Criteria
typedef CGAL::Mesh_criteria_3<Tr> Mesh_criteria;
int operator()(const char* fname, const char* out_fname)
{
std::ifstream input(fname);
using namespace CGAL::parameters;
Polyhedron polyhedron;
input >> polyhedron;
if(input.fail()){
std::cerr << "Error: Cannot read file " << fname << std::endl;
return EXIT_FAILURE;
}
if (!CGAL::is_triangle_mesh(polyhedron)){
std::cerr << "Input geometry is not triangulated." << std::endl;
return EXIT_FAILURE;
}
// Create domain
Mesh_domain domain(polyhedron);
// domain.detect_features() is not called, on purpose
// Mesh criteria
Mesh_criteria criteria(edge_size = 0.2,
facet_angle = 25, facet_size = 0.2, facet_distance = 0.02,
cell_radius_edge_ratio = 3, cell_size = 0.2);
// Mesh generation
C3t3 c3t3 = CGAL::make_mesh_3<C3t3>(domain, criteria);
// Output
std::ofstream medit_file(out_fname);
c3t3.output_to_medit(medit_file);
return EXIT_SUCCESS;
}
};
int main(int argc, char*argv[])
{
const char* fname = (argc>1)?argv[1]:"data/cube.off";
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Mesh_polyhedron_3<K>::type Polyhedron;
typedef CGAL::Surface_mesh<K::Point_3> Surface_mesh;
return
Tester<K, Polyhedron>()(fname, "out-polyhedron.mesh") |
Tester<K, Surface_mesh>()(fname, "out-surface_mesh.mesh");
}