ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/xyz2pov/src/pov_writer.h
Revision: 60
Committed: Thu Aug 1 21:12:33 2002 UTC (21 years, 11 months ago) by mmeineke
Content type: text/plain
Original Path: branches/mmeineke/xyz2pov/src/pov_writer.h
File size: 303 byte(s)
Log Message:
A pair of utilities to turn an xyz file into a sequence of povray rendered images.

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