vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RandomFaultsAlgorithm.h
Go to the documentation of this file.
1 
9 #ifndef VRECKO_NATURE_TERRAIN_RANDOMFAULTS_H
10 #define VRECKO_NATURE_TERRAIN_RANDOMFAULTS_H
11 
12 #include "TerrainAlgorithm.h"
13 #include "../TerrainUtility.h"
14 #include <osg/Array>
15 
16 namespace APNature
17 {
19  {
20  public:
21 
27  RandomFaultsAlgorithm(int width, int height);
28 
39  float* GenerateSurfaceByRandomFaults(int iterations, float faultValueMin, float faultValueMax);
40 
41  private:
42 
43  };
44 }
45 
46 #endif