Revision: | 508 |
Committed: | Tue Apr 29 15:21:34 2003 UTC (22 years ago) by mmeineke |
Content type: | text/plain |
File size: | 367 byte(s) |
Log Message: | added some stuff, and forgot to update. who knows whats different now. |
# | 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 | extern int regenerateBonds; |
17 | |
18 | extern void initBondList( void ); |
19 | |
20 | #endif |