qvolray

view src/volray.h @ 13:17d9dc2edc91

first qt version
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 10 Apr 2012 06:11:16 +0300
parents 981fef9aa1be
children 3d05c261a2f4
line source
1 #ifndef VOLRAY_H_
2 #define VOLRAY_H_
4 #include "volume.h"
6 bool volray_init();
7 void volray_setvolume(const Volume *vol);
8 void volray_resize(int xsz, int ysz);
9 void volray_draw();
11 void volray_mouse(int bn, int state, int x, int y);
12 void volray_motion(int x, int y);
14 #endif // VOLRAY_H_