blob: e7287659398a86027510c1657cc661c1faba1a9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef GLGEAR_H
#define GLGEAR_H
#include "glcontrolwidget.h"
class GLGear : public GLControlWidget
{
Q_OBJECT
public:
GLGear( QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
protected:
void draw();
void animate();
void initializeGL();
void resizeGL( int, int );
void paintGL();
private:
GLfloat view_rotx, view_roty, view_rotz;
GLint gear1, gear2, gear3;
GLfloat angle;
};
#endif // GLGEAR_H
|