summaryrefslogtreecommitdiffstats
path: root/Smoke/fluids.h
diff options
context:
space:
mode:
authorWilrik de Loose <wilrik@wilrik.nl>2007-12-13 19:13:55 (GMT)
committerWilrik de Loose <wilrik@wilrik.nl>2007-12-13 19:13:55 (GMT)
commitb2ee5b9e43beab038be81df3f8951e010313b5dc (patch)
tree512ab4b625817a01de7e191ec18c4d07beeac617 /Smoke/fluids.h
parent67465874258a26484ae39ce018caef6f0fbe0c92 (diff)
download2iv35-b2ee5b9e43beab038be81df3f8951e010313b5dc.zip
2iv35-b2ee5b9e43beab038be81df3f8951e010313b5dc.tar.gz
2iv35-b2ee5b9e43beab038be81df3f8951e010313b5dc.tar.bz2
seedpoints
Diffstat (limited to 'Smoke/fluids.h')
-rw-r--r--Smoke/fluids.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Smoke/fluids.h b/Smoke/fluids.h
index 7464e73..7e306f7 100644
--- a/Smoke/fluids.h
+++ b/Smoke/fluids.h
@@ -66,6 +66,10 @@ extern int glyph_scalar;
extern int glyph_vector;
extern int draw_options;
+extern float xPos;
+extern float yPos;
+extern float zPos;
+
void init_simulation(int n);
void visualize(void);
@@ -93,5 +97,19 @@ void show_options(void);
void toggle_glyph_usage(void);
void toggle_smoke_usage(void);
void toggle_mouse_rotate(void);
+void toggle_seed_insert(void);
void set_glyph_scalar(int arg);
void set_glyph_vector(int arg);
+
+struct point {
+ float x;
+ float y;
+ float z;
+};
+
+struct color4f {
+ float r;
+ float g;
+ float b;
+ float a;
+};