added del_atom function
[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 "../math/math.h"
12
13 /* datatypes */
14
15 typedef struct s_visual {
16         int fd;                 /* rasmol script file descriptor */
17         char fb[128];           /* basename of the save files */
18         t_3dvec dim;            /* dimensions of the simulation cell */
19 } t_visual;
20
21 #include "../moldyn.h"
22
23 /* function prototypes */
24
25 int visual_init(t_visual *v,char *filebase);
26 int visual_tini(t_visual *v);
27 int visual_atoms(t_visual *v,double time,t_atom *atom,int n);
28
29 #endif
30
31