volray

view src/volume.h @ 8:ae10631bb11b

cleaning up a bit to expand
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 07 Apr 2012 16:07:12 +0300
parents
children a6765984e057
line source
1 #ifndef VOLUME_H_
2 #define VOLUME_H_
4 #include <stdint.h>
6 struct volume {
7 int sz[3];
8 float zaspect;
9 unsigned int tex_vol, tex_grad;
10 };
12 struct volume *load_volume(const char *fname);
13 void free_volume(struct volume *vol);
15 #endif /* VOLUME_H_ */