Revision: | 60 |
Committed: | Thu Aug 1 21:12:33 2002 UTC (22 years, 9 months ago) by mmeineke |
Content type: | text/plain |
File size: | 303 byte(s) |
Log Message: | A pair of utilities to turn an xyz file into a sequence of povray rendered images. |
# | Content |
---|---|
1 | #ifndef _POV_WRITER_ |
2 | #define _POV_WRITER_ |
3 | |
4 | struct coords{ |
5 | double x; |
6 | double y; |
7 | double z; |
8 | char name[30]; |
9 | }; |
10 | |
11 | extern void pov_write(FILE *out_file, struct coords *the_coords, int n_atoms, |
12 | int d_hydrogens, int d_bonds, int d_atoms); |
13 | |
14 | extern void make_header_macros(FILE *out_file); |
15 | |
16 | #endif |