ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/meta/span.h
Revision: 1.1
Committed: Sat Feb 22 02:07:26 2003 UTC (21 years, 2 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad3R5
Log Message:
Changes and check-in for 3.5 release
Includes new source files and modifications not recorded for many years
See ray/doc/notes/ReleaseNotes for notes between 3.1 and 3.5 release

File Contents

# User Rev Content
1 greg 1.1 /* RCSid: $Id$ */
2     /*
3     * Structures for line segment output to dot matrix printers
4     */
5    
6    
7     #define MAXSPAN 5120 /* maximum span size in bytes */
8    
9    
10    
11    
12     struct span { /* line of printer output */
13     int xleft, xright, ybot, ytop;
14     char cols[MAXSPAN];
15     char tcols[MAXSPAN];
16     };
17    
18    
19    
20    
21     extern int linwidt, linhite, /* line size */
22     nrows; /* # of rows */
23    
24     extern int minwidth; /* minimum line width */
25    
26     extern struct span outspan; /* output span */
27    
28     extern int spanmin, spanmax; /* current span dimensions */