ESyS-Particle  2.3
LayeredBlock.h
Go to the documentation of this file.
1 // //
3 // Copyright (c) 2003-2014 by The University of Queensland //
4 // Centre for Geoscience Computing //
5 // http://earth.uq.edu.au/centre-geoscience-computing //
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 #ifndef __LAYEREDBLOCK_H
14 #define __LAYEREDBLOCK_H
15 
16 //-- project includes --
17 #include "Geometry/RandomBlock.h"
18 
19 //-- STL includes --
20 #include <set>
21 
22 using std::set;
23 
33 {
34  private:
35  set<double> LayerBoundaries;
36 
37  public:
38  CLayeredBlock2D(double,double,double,double,double,double);
39  virtual ~CLayeredBlock2D();
40 
41  void addLayerBoundary(double);
42  virtual void generate(int,unsigned int);
43 };
44 
45 #endif //__LAYEREDBLOCK_H
virtual ~CLayeredBlock2D()
Definition: LayeredBlock.cpp:18
set< double > LayerBoundaries
Definition: LayeredBlock.h:35
void addLayerBoundary(double)
Definition: LayeredBlock.cpp:21
Class for the generation of a layered 2D random lattice in a rectangular area.
Definition: LayeredBlock.h:32
Class for the generation of a 2D random lattice in a rectangular area.
Definition: RandomBlock.h:40
virtual void generate(int, unsigned int)
Definition: LayeredBlock.cpp:26
CLayeredBlock2D(double, double, double, double, double, double)
Definition: LayeredBlock.cpp:15