Poisson Surface Reconstruction: Enable Structural Filtering

This commit is contained in:
Andreas Fabri 2023-11-23 15:22:20 +00:00
parent 64976a9f99
commit b3cbbd2a78
1 changed files with 7 additions and 0 deletions

View File

@ -26,6 +26,7 @@
#include <CGAL/Delaunay_triangulation_3.h>
#include <CGAL/Delaunay_triangulation_cell_base_3.h>
#include <CGAL/Triangulation_cell_base_with_info_3.h>
#include <CGAL/Triangulation_structural_filtering_traits.h>
#include <CGAL/algorithm.h>
#include <CGAL/bounding_box.h>
@ -148,6 +149,12 @@ struct Reconstruction_triangulation_default_geom_traits_3 : public BaseGt
};
template < class BaseGt >
struct Triangulation_structural_filtering_traits<Reconstruction_triangulation_default_geom_traits_3<BaseGt> > {
typedef typename Triangulation_structural_filtering_traits<BaseGt>::Use_structural_filtering_tag Use_structural_filtering_tag;
};
/// \internal
/// The Reconstruction_triangulation_3 class
/// provides the interface requested by the Poisson_reconstruction_function class: