qvolray

diff 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 diff
     1.1 --- a/src/volray.h	Mon Apr 09 23:43:13 2012 +0300
     1.2 +++ b/src/volray.h	Tue Apr 10 06:11:16 2012 +0300
     1.3 @@ -1,8 +1,14 @@
     1.4  #ifndef VOLRAY_H_
     1.5  #define VOLRAY_H_
     1.6  
     1.7 +#include "volume.h"
     1.8 +
     1.9  bool volray_init();
    1.10 +void volray_setvolume(const Volume *vol);
    1.11  void volray_resize(int xsz, int ysz);
    1.12  void volray_draw();
    1.13  
    1.14 +void volray_mouse(int bn, int state, int x, int y);
    1.15 +void volray_motion(int x, int y);
    1.16 +
    1.17  #endif	// VOLRAY_H_