qvolray

view src/volray.h @ 18:3d05c261a2f4

demo metaballs crash & burn
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 11 Apr 2012 06:08:59 +0300
parents 17d9dc2edc91
children 4c62be57fc1a
line source
1 #ifndef VOLRAY_H_
2 #define VOLRAY_H_
4 #include "volume.h"
6 bool volray_init();
8 void volray_setvolume(Volume *vol);
9 Volume *volray_getvolume();
11 void volray_resize(int xsz, int ysz);
12 void volray_draw();
14 void volray_mouse(int bn, int state, int x, int y);
15 void volray_motion(int x, int y);
17 #endif // VOLRAY_H_