The R Project SVN R

Rev

Rev 19934 | Rev 27237 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 19934 Rev 20446
Line 147... Line 147...
147
			/* [1] = location of axis label */
147
			/* [1] = location of axis label */
148
			/* [2] = location of axis line */
148
			/* [2] = location of axis line */
149
    double mkh;		/* Mark size in inches */
149
    double mkh;		/* Mark size in inches */
150
    int	pch;		/* Plotting character */
150
    int	pch;		/* Plotting character */
151
    int	ps;		/* Text & symbol pointsize */
151
    int	ps;		/* Text & symbol pointsize */
152
    double smo;		/* Curve smoothness */
152
    int	smo;		/* Curve smoothness */
153
    double srt;		/* String Rotation */
153
    double srt;		/* String Rotation */
154
    double tck;		/* Tick size as in S */
154
    double tck;		/* Tick size as in S */
155
    double tcl;		/* Tick size in "lines" */
155
    double tcl;		/* Tick size in "lines" */
156
    double tmag;	/* **R ONLY** Title Magnification */
156
    double tmag;	/* **R ONLY** Title Magnification */
157
    int	type;		/* type of plot desired */
157
    int	type;		/* type of plot desired */
Line 333... Line 333...
333
 
333
 
334
/* For easy reference: Here are the source files of
334
/* For easy reference: Here are the source files of
335
 * currently existing device drivers:
335
 * currently existing device drivers:
336
 * FILE				driver name prefix
336
 * FILE				driver name prefix
337
 * ----------------------	------------------
337
 * ----------------------	------------------
338
 * ../main/devPS.c		PS  _and_  XFig
338
 * ../main/devPS.c		PS , PDF _and_  XFig
339
 * ../main/devPicTeX.c		PicTeX
339
 * ../main/devPicTeX.c		PicTeX
340
 * ../modules/X11/devX11.c	X11
340
 * ../modules/X11/devX11.c	X11
341
 * ../gnuwin32/devga.c		GA
341
 * ../gnuwin32/devga.c		GA
342
 * ../modules/gnome/devGTK.c	GTK
342
 * ../modules/gnome/devGTK.c	GTK
343
 * ../modules/gnome/devGNOME.c	Gnome
343
 * ../modules/gnome/devGNOME.c	Gnome
Line 388... Line 388...
388
unsigned int str2col(char *);
388
unsigned int str2col(char *);
389
 
389
 
390
char* col2name(unsigned int);
390
char* col2name(unsigned int);
391
 
391
 
392
unsigned int ScaleColor(double x);
392
unsigned int ScaleColor(double x);
-
 
393
unsigned int CheckColor(int x);
393
 
394
 
394
char* RGB2rgb(unsigned int, unsigned int, unsigned int);
395
char* RGB2rgb(unsigned int, unsigned int, unsigned int);
395
 
396
 
396
int StrMatch(char *s, char *t);
397
int StrMatch(char *s, char *t);
397
 
398