ESyS-Particle  4.0.1
CubicBlockIterator.h
1 
2 // //
3 // Copyright (c) 2003-2011 by The University of Queensland //
4 // Earth Systems Science Computational Centre (ESSCC) //
5 // http://www.uq.edu.au/esscc //
6 // //
7 // Primary Business: Brisbane, Queensland, Australia //
8 // Licensed under the Open Software License version 3.0 //
9 // http://www.opensource.org/licenses/osl-3.0.php //
10 // //
12 
13 
14 #ifndef ESYS_LSMCUBICBLOCKITERATOR_H
15 #define ESYS_LSMCUBICBLOCKITERATOR_H
16 
17 #include "Foundation/BoundingBox.h"
18 #include "Foundation/vec3.h"
19 #include "Geometry/ClosePackIterator.h"
20 #include "Geometry/Vec3L.h"
21 
22 namespace esys
23 {
24  namespace lsm
25  {
26 
32  {
33  public:
34 
38  inline CubicBlockIterator();
39 
49  inline CubicBlockIterator(
50  int numI,
51  int numJ,
52  int numK,
53  double sphereRadius,
54  ClosePackOrientation orientation = DEFAULT_ORIENT
55  );
56  };
57  }
58 }
59 
60 #include "Geometry/CubicBlockIterator.hpp"
61 
62 #endif