BEM++  2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
bounding_box.hpp
1 #ifndef bempp_bounding_box_hpp
2 #define bempp_bounding_box_hpp
3 
4 #include "common.hpp"
5 #include "types.hpp"
6 
7 namespace Bempp
8 {
9 
12 template <typename CoordinateType>
14 {
21 };
22 
23 } // namespace Bempp
24 
25 #endif
Point3D< CoordinateType > ubound
Upper bound.
Definition: bounding_box.hpp:20
Point3D< CoordinateType > lbound
Lower bound.
Definition: bounding_box.hpp:18
Point3D< CoordinateType > reference
Reference point.
Definition: bounding_box.hpp:16
Bounding box with a reference point.
Definition: bounding_box.hpp:13