cgal/Skin_surface_3/test/Skin_surface_3/subdivision_test.cpp

93 lines
2.8 KiB
C++

// test/Skin_surface_3/subdivision_test.cpp
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Skin_surface_3.h>
#include <CGAL/Polyhedron_3.h>
#include <CGAL/mesh_skin_surface_3.h>
#include <CGAL/subdivide_skin_surface_mesh_3.h>
#include <list>
#include <string>
#include <fstream>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Skin_surface_traits_3<K> Traits;
typedef CGAL::Skin_surface_3<Traits> Skin_surface_3;
typedef Skin_surface_3::FT FT;
typedef Skin_surface_3::Bare_point Bare_point;
typedef Skin_surface_3::Weighted_point Weighted_point;
typedef CGAL::Polyhedron_3<K> Polyhedron;
typedef CGAL::Skin_surface_polyhedral_items_3<Skin_surface_3> Poly_items_skin;
typedef CGAL::Polyhedron_3<K,Poly_items_skin> Polyhedron_skin;
#include <fstream>
Skin_surface_3 create_skin_surface(std::string &filename, double shrink)
{
std::list<Weighted_point> l;
std::ifstream in(filename.c_str());
assert(in.is_open());
Weighted_point wp;
while (in >> wp) l.push_front(wp);
return Skin_surface_3(l.begin(), l.end(), shrink);
}
template < class Skin_surface_3, class Polyhedron>
void construct_and_subdivide_mesh(Skin_surface_3 &skin_surface,
Polyhedron &polyhedron)
{
CGAL::mesh_skin_surface_3(skin_surface, polyhedron);
assert(polyhedron.is_valid() && polyhedron.is_closed());
CGAL::subdivide_skin_surface_mesh_3(skin_surface, polyhedron);
assert(polyhedron.is_valid() && polyhedron.is_closed());
}
class Test_file
{
public:
Test_file(double shrink) : s(shrink) {
}
void operator()(std::string &filename)
{
std::cout << filename << std::endl;
Skin_surface_3 skin_surface = create_skin_surface(filename, s);
Polyhedron_skin p_skin;
construct_and_subdivide_mesh(skin_surface, p_skin);
p_skin.clear();
}
private:
double s;
};
int main(int, char **)
{
std::vector<std::string> filenames;
filenames.push_back("data/caffeine.cin");
filenames.push_back("data/ball.cin");
filenames.push_back("data/degenerate.cin");
filenames.push_back("data/test1.cin");
filenames.push_back("data/test2.cin");
filenames.push_back("data/test3.cin");
filenames.push_back("data/test4.cin");
filenames.push_back("data/test5.cin");
filenames.push_back("data/test6.cin");
filenames.push_back("data/test7.cin");
filenames.push_back("data/test8.cin");
filenames.push_back("data/test9.cin");
filenames.push_back("data/test10.cin");
filenames.push_back("data/test11.cin");
std::for_each(filenames.begin(), filenames.end(), Test_file(.5));
std::for_each(filenames.begin(), filenames.end(), Test_file(.25));
return 0;
}