mirror of https://github.com/CGAL/cgal
Poisson Surface Reconstruction: Enable Structural Filtering
This commit is contained in:
parent
64976a9f99
commit
b3cbbd2a78
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue