#ifndef _FLOWVIS_H #define _FLOWVIS_H #define FLOWVIS_SORT_FRAME 0 #define FLOWVIS_SORT_3DPLOT 1 void flowvis_set_render(int render_flowvi); int flowvis_get_render(void); void flowvis_set_num_colors(int num_colors); int flowvis_get_num_colors(void); void flowvis_set_colormap(int colormap); int flowvis_get_colormap(void); void flowvis_set_alpha(float alpha); float flowvis_get_alpha(void); void flowvis_set_frame(fftw_real *frame); fftw_real *flowvis_get_frame(void); void flowvis_set_history(fftw_real **history); fftw_real *flowvis_get_history(int hisdex); void flowvis_set_sort(int sort); int flowvis_get_sort(void); void flowvis_set_hisdex(int arg); int flowvis_get_hisdex(void); struct color4f flowvis_get_color(float value); #endif