diff options
Diffstat (limited to 'src/povray.h')
-rw-r--r-- | src/povray.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/povray.h b/src/povray.h new file mode 100644 index 00000000..f60bd566 --- /dev/null +++ b/src/povray.h @@ -0,0 +1,22 @@ +/* + * povray.c + * + * Invoke POV-ray + * + * (c) 2006-2010 Thomas White <taw@physics.org> + * + * Part of CrystFEL - crystallography with a FEL + * + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#ifndef POVRAY_H +#define POVRAY_H + +extern int povray_render_animation(UnitCell *cell, double *ref, + unsigned int *c, unsigned int nproc); + +#endif /* POVRAY_H */ |