summaryrefslogtreecommitdiffstats
path: root/Smoke/flowvis.h
blob: 7e186e26bebd15161462f110e056bc88fdd17237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _FLOWVIS_H
#define _FLOWVIS_H

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);


struct color4f flowvis_get_color(float value);

#endif