Projection_traits_xy_3: Enable structural filtering

This commit is contained in:
Andreas Fabri 2023-01-09 11:13:29 +00:00
parent 3cabebf827
commit 404cf8f0c2
1 changed files with 6 additions and 0 deletions

View File

@ -14,6 +14,7 @@
#define CGAL_PROJECTION_TRAITS_XY_3_H
#include <CGAL/Kernel_23/internal/Projection_traits_3.h>
#include <CGAL/Triangulation_structural_filtering_traits.h>
namespace CGAL {
@ -22,6 +23,11 @@ class Projection_traits_xy_3
: public internal::Projection_traits_3<R,2>
{};
template < class R >
struct Triangulation_structural_filtering_traits<Projection_traits_xy_3<R> > {
typedef typename Triangulation_structural_filtering_traits<R>::Use_structural_filtering_tag Use_structural_filtering_tag;
};
} //namespace CGAL
#endif // CGAL_PROJECTION_TRAITS_XY_3_H