Misc cleaning

This commit is contained in:
Mael Rouxel-Labbé 2024-12-20 16:16:26 +01:00
parent c22fadaa32
commit 7b6886ed17
2 changed files with 6 additions and 3 deletions

View File

@ -1057,7 +1057,7 @@ struct Lazy_construction_optional_for_polyhedral_envelope
}
};
// used in Newkernel_d
template <typename LK, typename AC, typename EC>
struct Lazy_construction_nt {
Lazy_construction_nt(){}

View File

@ -90,9 +90,11 @@ template <class R,int dim>
class Construct_bbox_projected_2 {
public:
typedef typename R::Point_3 Point;
typedef Bbox_2 result_type;
Bbox_2 operator()(const Point& p) const { typename R::Construct_bbox_3 bb; return Projector<R, dim>::bbox(bb(p)); }
Bbox_2 operator()(const Point& p) const {
typename R::Construct_bbox_3 bb;
return Projector<R, dim>::bbox(bb(p));
}
};
template <class R,int dim>
@ -315,6 +317,7 @@ public:
typedef typename R::Segment_3 Segment_3;
typedef typename R::Segment_2 Segment_2;
typedef typename R::FT RT;
typename R::FT x(const Point_3 &p) const { return Projector<R,dim>::x(p); }
typename R::FT y(const Point_3 &p) const { return Projector<R,dim>::y(p); }