ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/xyz2pov/src/pov_writer.h
Revision: 61
Committed: Thu Aug 1 21:12:33 2002 UTC (21 years, 11 months ago) by mmeineke
Content type: text/plain
File size: 303 byte(s)
Log Message:
This commit was generated by cvs2svn to compensate for changes in r60, which
included commits to RCS files with non-trunk default branches.

File Contents

# User Rev Content
1 mmeineke 60 #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