incorporated visual functions to moldyn api
[physik/posic.git] / visual / visual.h
diff --git a/visual/visual.h b/visual/visual.h
deleted file mode 100644 (file)
index 416f82b..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * visual.h - visualization header file
- *                                  
- * author: Frank Zirkelbach <frank.zirkelbach@physik.uni-augsburg.de>
- *
- */
-
-#ifndef VISUAL_H
-#define VISUAL_H
-
-#include "../math/math.h"
-
-/* datatypes */
-
-typedef struct s_visual {
-       int fd;                 /* rasmol script file descriptor */
-       char fb[128];           /* basename of the save files */
-       t_3dvec dim;            /* dimensions of the simulation cell */
-} t_visual;
-
-#include "../moldyn.h"
-
-/* function prototypes */
-
-int visual_init(t_visual *v,char *filebase);
-int visual_tini(t_visual *v);
-int visual_atoms(t_visual *v,double time,t_atom *atom,int n);
-
-#endif
-
-