summaryrefslogtreecommitdiffstats
path: root/Smoke/heightplots.h
blob: 6c25c69c4e59e3349c667ae7bf9778dd0c09e194 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef _HEIGHTPLOTS_H
#define _HEIGHTPLOTS_H

void heightplots_set_render(int render_heightplots);
int heightplots_get_render(void);

void heightplots_set_num_colors(int num_colors);
int heightplots_get_num_colors(void);

void heightplots_set_colormap(int colormap);
int heightplots_get_colormap(void);

void heightplots_set_alpha(float alpha);
float heightplots_get_alpha(void);

void heightplots_set_dataset(int dataset);
int heightplots_get_dataset(void);

void heightplots_set_height(int height);
int heightplots_get_height(void);

void heightplots_set_frame(fftw_real *frame);
fftw_real *heightplots_get_frame(void);


struct color4f heightplots_get_color(float value);

#endif