Warning: include(php/utility.php): Failed to open stream: No such file or directory in /home/argos/argos3/doc/api/embedded/a00855_source.php on line 2

Warning: include(): Failed opening 'php/utility.php' for inclusion (include_path='.:/usr/lib64/php') in /home/argos/argos3/doc/api/embedded/a00855_source.php on line 2
The ARGoS Website

qtopengl_light.h
Go to the documentation of this file.
1 
7 #ifndef QTOPENGL_LIGHT_H
8 #define QTOPENGL_LIGHT_H
9 
10 namespace argos {
11  class CQTOpenGLLight;
12  class CLightEntity;
13 }
14 
15 #ifdef __APPLE__
16 #include <gl.h>
17 #else
18 #include <GL/gl.h>
19 #endif
20 
21 namespace argos {
22 
24 
25  public:
26 
28 
29  virtual ~CQTOpenGLLight();
30 
31  virtual void Draw(CLightEntity& c_entity);
32 
33  private:
34 
35  GLuint m_unList;
36  GLuint m_unVertexes;
37  GLfloat m_fRadius;
38 
39  };
40 
41 }
42 
43 #endif
virtual void Draw(CLightEntity &c_entity)
The namespace containing all the ARGoS related code.
Definition: ci_actuator.h:12