ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/meta/plot.h
Revision: 1.2
Committed: Sun Jun 8 12:03:10 2003 UTC (20 years, 10 months ago) by schorsch
Content type: text/plain
Branch: MAIN
Changes since 1.1: +6 -1 lines
Log Message:
Reduced compile warnings/errors on Windows.

File Contents

# User Rev Content
1 schorsch 1.2 /* RCSid: $Id: plot.h,v 1.1 2003/02/22 02:07:26 greg Exp $ */
2 greg 1.1 /*
3     * Definitions for plotting routines
4     */
5    
6    
7     #define NPATS 9 /* number of fill patterns */
8    
9     #define PATSIZE 16 /* pattern size (square) */
10    
11    
12     extern int dxsize, dysize; /* device size */
13    
14     extern int pati[];
15    
16     extern unsigned char pattern[][PATSIZE/8][PATSIZE]; /* fill patterns */
17 schorsch 1.2
18     extern void set(int attrib, char *value);
19     extern void reset(int attrib);
20     extern void unset(int attrib);
21