CloudyDay
 All Classes Functions Variables Enumerations
DataCloud.h
1 #pragma once
2 #include "CloudGenerator.h"
3 
4 namespace osgCloudyDay
5 {
9  class DataCloud : public CloudGenerator
10  {
11  public:
15  DataCloud(osg::ref_ptr<osg::Vec3Array> vertices, osg::ref_ptr<osg::Vec4Array> rotation, osg::ref_ptr<osg::Vec4Array> center, osg::ref_ptr<osg::Vec4Array> ids);
19  ~DataCloud(void);
20 
21  protected:
25  void Initialize();
26  };
27 }