Euclid
Geometry Processing and Shape Analysis in C++
AABB.h
1 #pragma once
2 
3 #include <array>
4 #include <vector>
5 
6 namespace Euclid
7 {
14 template<typename Kernel>
15 class AABB
16 {
17 public:
18  using Point_3 = typename Kernel::Point_3;
19  using FT = typename Kernel::FT;
20 
21 public:
25  explicit AABB(const std::vector<FT>& positions);
26 
30  explicit AABB(const std::vector<Point_3>& points);
31 
35  template<typename ForwardIterator, typename VPMap>
36  AABB(ForwardIterator first, ForwardIterator beyond, VPMap vpmap);
37 
41  Point_3 center() const;
42 
46  FT xmin() const;
47 
51  FT xmax() const;
52 
56  FT xlen() const;
57 
61  FT ymin() const;
62 
66  FT ymax() const;
67 
71  FT ylen() const;
72 
76  FT zmin() const;
77 
81  FT zmax() const;
82 
86  FT zlen() const;
87 
94  Point_3 point(bool xlarge, bool ylarge, bool zlarge) const;
95 
96 private:
97  void _build_aabb(FT xmin, FT xmax, FT ymin, FT ymax, FT zmin, FT zmax);
98 
99 private:
100  Point_3 _center;
101  FT _xlen; // Half length
102  FT _ylen;
103  FT _zlen;
104 };
105 
107 } // namespace Euclid
108 
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
Definition: AABB.h:6
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