Nombre de lignes : 47 lignes
Afficher ce fichier en plein écran
- #ifndef VIEW2D_H
- #define VIEW2D_H
-
- #include <QWidget>
- #include <QGLWidget>
-
-
- class Window;
-
-
-
- class View2D : public QGLWidget
- {
- Q_OBJECT
- public:
- explicit View2D(QWidget *parent = 0);
-
-
- Window* m_Win;
- // Valeurs ...
- GLfloat m_XMax, m_XMin;
- GLfloat m_YMax, m_YMin;
- int m_Step_x, m_Step_y;
-
- protected:
- void initializeGL();
- void paintGL();
- void resizeGL(int width, int height);
-
- void DessinAxe(void);
- void DessinPoints(void);
- void Dessin(void);
- void Init(void);
- void InitCourbe(int No);
-
-
-
- signals:
-
-
-
- public slots:
-
- };
-
- #endif // VIEW_H