qvolray

annotate 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
rev   line source
nuclear@12 1 #ifndef VOLRAY_H_
nuclear@12 2 #define VOLRAY_H_
nuclear@12 3
nuclear@13 4 #include "volume.h"
nuclear@13 5
nuclear@12 6 bool volray_init();
nuclear@13 7 void volray_setvolume(const Volume *vol);
nuclear@12 8 void volray_resize(int xsz, int ysz);
nuclear@12 9 void volray_draw();
nuclear@12 10
nuclear@13 11 void volray_mouse(int bn, int state, int x, int y);
nuclear@13 12 void volray_motion(int x, int y);
nuclear@13 13
nuclear@12 14 #endif // VOLRAY_H_