rayzor
view src/modeller.h @ 17:79609d482762
the renderer renders, also fixed an unnoticed matrix conversion problem between scenegraph and min3d
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 14 Apr 2014 07:34:45 +0300 |
parents | |
children |
line source
1 #ifndef MODELLER_H_
2 #define MODELLER_H_
4 #include "screen.h"
6 struct ModellerImpl;
8 class Modeller : public Screen {
9 private:
10 ModellerImpl *mod;
12 public:
13 Modeller();
14 ~Modeller();
16 bool init();
17 void shutdown();
19 void draw() const;
21 void handle_keyboard(int key, bool press);
22 void handle_mbutton(int bn, bool press, int x, int y);
23 void handle_mmotion(int x, int y);
24 };
26 #endif // MODELLER_H_