BoundingBox.h
Go to the documentation of this file.
1 /*
2  This file is part of the Ristra wonton project.
3  Please see the license file at the root of this repository, or at:
4  https://github.com/laristra/wonton/blob/master/LICENSE
5 */
6 
7 #ifndef WONTON_BOUNDING_BOX_H_
8 #define WONTON_BOUNDING_BOX_H_
9 
10 #include <array>
11 
12 namespace Wonton {
13 
20 template<int D>
21 using BoundingBox = std::array<std::array<double,2>,D>;
22 
23 const int LO = 0;
24 const int HI = 1;
25 
26 } // namespace Wonton
27 
28 #endif // WONTON_BOUNDING_BOX_H_
Factorize a number N into D equal (or nearly equal) factors.
Definition: adaptive_refinement_mesh.h:31
std::array< std::array< double, 2 >, D > BoundingBox
Bounding Box type.
Definition: BoundingBox.h:21
const int HI
Definition: BoundingBox.h:24
const int LO
Definition: BoundingBox.h:23