PanoramaViewer
 All Classes Namespaces Files Functions Variables Macros Pages
Impostor.h
Go to the documentation of this file.
1 /*
2  * Impostor.h
3  *
4  * Created on: 30 juin 2013
5  * Author: hallison
6  */
7 
8 #ifndef IMPOSTOR_H_
9 #define IMPOSTOR_H_
10 
11 #include "SceneNode.h"
12 #include "Mesh.h"
13 
14 namespace LayerSceneGraph {
15 
16 class Impostor : public SceneNode {
17 private:
19 public:
20  Impostor(GLfloat distance);
21  virtual ~Impostor();
22 
23  void draw();
24  void setTexture(Texture *texture);
25 };
26 
27 } /* namespace LayerSceneGraph */
28 #endif /* IMPOSTOR_H_ */