Fix name: polygonal_envelope > polyhedral_envelope

This commit is contained in:
Mael Rouxel-Labbé 2024-12-17 22:47:13 +01:00
parent 4783005cbf
commit 9188e8adc4
2 changed files with 2 additions and 2 deletions

View File

@ -1004,7 +1004,7 @@ struct Lazy_construction_bbox
template <typename LK, typename AC, typename EC>
struct Lazy_construction_optional_for_polygonal_envelope
struct Lazy_construction_optional_for_polyhedral_envelope
{
static const bool Protection = true;
typedef typename LK::Approximate_kernel AK;

View File

@ -258,7 +258,7 @@ private:
template <typename Construction>
struct Select_wrapper_impl<Construction, OPTIONAL_> {
template<typename Kernel, typename AKC, typename EKC>
struct apply { typedef Lazy_construction_optional_for_polygonal_envelope<Kernel, AKC, EKC> type; };
struct apply { typedef Lazy_construction_optional_for_polyhedral_envelope<Kernel, AKC, EKC> type; };
};
template <typename Construction>