CloudyDay
 All Classes Functions Variables Enumerations
CumulusGenerator.h
1 #pragma once
2 #include "CloudGenerator.h"
3 
4 namespace osgCloudyDay
5 {
10  {
11  public:
12  enum CumulusGeneratorType
13  {
14  CCT_HUMILIS,
15  CCT_MEDIOCRIS,
16  CCT_CONGESTUS
17  };
18 
19  public:
24  CumulusGenerator(osg::Vec4 layer);
28  ~CumulusGenerator(void);
29 
30  protected:
34  void Initialize();
35 
36  int m_type;
37  };
38 }