summaryrefslogtreecommitdiffstats
path: root/examples/demo/opengl/glgear.h
blob: fed4256caf424b6dbbd2a5016f502699794fa225 (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( TQWidget *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