#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Surface_mesh.h>
#include <CGAL/Polygon_mesh_processing/repair_polygon_soup.h>
#include <CGAL/Polygon_mesh_processing/orient_polygon_soup.h>
#include <CGAL/Polygon_mesh_processing/polygon_soup_to_polygon_mesh.h>
#include <algorithm>
#include <array>
#include <iostream>
#include <vector>
typedef K::FT FT;
typedef K::Point_3 Point_3;
typedef std::array<FT, 3> Custom_point;
#ifdef CGAL_USE_ARRAY_POLYGONS_IN_EXAMPLE
typedef std::array<std::size_t, 3> CGAL_Polygon;
#else
typedef std::vector<std::size_t> CGAL_Polygon;
#endif
struct Array_traits
{
struct Equal_3
{
bool operator()(const Custom_point& p, const Custom_point& q) const {
return (p == q);
}
};
struct Less_xyz_3
{
bool operator()(const Custom_point& p, const Custom_point& q) const {
return std::lexicographical_compare(p.begin(), p.end(), q.begin(), q.end());
}
};
Equal_3 equal_3_object() const { return Equal_3(); }
Less_xyz_3 less_xyz_3_object() const { return Less_xyz_3(); }
};
int main(int, char**)
{
std::vector<std::array<FT, 3> > points;
std::vector<CGAL_Polygon> polygons;
points.push_back(CGAL::make_array<FT>( 0, 0, 0));
points.push_back(CGAL::make_array<FT>( 1, 0, 0));
points.push_back(CGAL::make_array<FT>( 0, 1, 0));
points.push_back(CGAL::make_array<FT>(-1, 0, 0));
points.push_back(CGAL::make_array<FT>( 0, -1, 0));
points.push_back(CGAL::make_array<FT>( 0, 1, 0));
points.push_back(CGAL::make_array<FT>( 0, -2, 0));
polygons.push_back({0,1,2});
polygons.push_back({0,0,0});
polygons.push_back({0,1,4});
polygons.push_back({0,4,1});
polygons.push_back({0,3,5});
polygons.push_back({0,3,0});
polygons.push_back({0,3,4});
#ifndef CGAL_USE_ARRAY_POLYGONS_IN_EXAMPLE
polygons.push_back({0,1,2,3,4,3,2,1});
#endif
std::cout << "Before repairing, the soup has " << points.size() << " vertices and " << polygons.size() << " faces" << std::endl;
std::cout << "After repairing, the soup has " << points.size() << " vertices and " << polygons.size() << " faces" << std::endl;
Mesh mesh;
std::cout << "Mesh has " << num_vertices(mesh) << " vertices and " << num_faces(mesh) << " faces" << std::endl;
assert(num_vertices(mesh) == 5);
assert(num_faces(mesh) == 4);
return 0;
}