14 template<
typename Kernel>
18 using Point_3 =
typename Kernel::Point_3;
19 using FT =
typename Kernel::FT;
25 explicit AABB(
const std::vector<FT>& positions);
30 explicit AABB(
const std::vector<Point_3>& points);
35 template<
typename ForwardIterator,
typename VPMap>
36 AABB(ForwardIterator first, ForwardIterator beyond, VPMap vpmap);
94 Point_3
point(
bool xlarge,
bool ylarge,
bool zlarge)
const;
97 void _build_aabb(FT xmin, FT xmax, FT ymin, FT ymax, FT zmin, FT zmax);
109 #include "src/AABB.cpp" FT ymin() const
Return y min.
Definition: AABB.cpp:137
FT zmax() const
Return z max.
Definition: AABB.cpp:161
FT ymax() const
Return y max.
Definition: AABB.cpp:143
Point_3 center() const
Return the center of the box.
Definition: AABB.cpp:113
Axis Aligned Bounding Box.
Definition: AABB.h:15
FT xlen() const
Return the length of edge along the x axis.
Definition: AABB.cpp:131
Point_3 point(bool xlarge, bool ylarge, bool zlarge) const
Return the corner point of the box.
Definition: AABB.cpp:173
FT xmin() const
Return x min.
Definition: AABB.cpp:119
FT ylen() const
Return the length of edge along the y axis.
Definition: AABB.cpp:149
FT xmax() const
Return x max.
Definition: AABB.cpp:125
FT zlen() const
Return the length of edge along the z axis.
Definition: AABB.cpp:167
AABB(const std::vector< FT > &positions)
Build AABB for a set of positions.
Definition: AABB.cpp:8
FT zmin() const
Return z min.
Definition: AABB.cpp:155