qvolray

annotate 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
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@18 7
nuclear@18 8 void volray_setvolume(Volume *vol);
nuclear@18 9 Volume *volray_getvolume();
nuclear@18 10
nuclear@12 11 void volray_resize(int xsz, int ysz);
nuclear@12 12 void volray_draw();
nuclear@12 13
nuclear@13 14 void volray_mouse(int bn, int state, int x, int y);
nuclear@13 15 void volray_motion(int x, int y);
nuclear@13 16
nuclear@12 17 #endif // VOLRAY_H_