added harmonic potntial + bugfixes + boundings
[physik/posic.git] / visual / visual.h
1 /*
2  * visual.h - visualization header file
3  *                                  
4  * author: Frank Zirkelbach <frank.zirkelbach@physik.uni-augsburg.de>
5  *
6  */
7
8 #ifndef VISUAL_H
9 #define VISUAL_H
10
11 #include "../moldyn.h"
12 #include "../math/math.h"
13
14 typedef struct s_visual {
15         int fd;                 /* rasmol script file descriptor */
16         char fb[128];           /* basename of the save files */
17         t_3dvec dim;            /* dimensions of the simulation cell */
18 } t_visual;
19
20
21 /* function prototypes */
22
23 int visual_init(t_visual *v,char *filebase);
24 int visual_tini(t_visual *v);
25 int visual_atoms(t_visual *v,double time,t_atom *atom,int n);
26
27 #endif