home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d2xx
/
d222
/
plplot.lha
/
Plplot
/
src
/
source.zoo
/
plcol.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-05-15
|
334b
|
19 lines
/* Sets line colour */
#include "plplot.h"
void plcol(colour)
int colour;
{
int font,col;
int level;
glev(&level);
if (level < 1) fatal("Please call PLSTAR before calling PLCOL.");
if (colour < 0) fatal("Invalid colour in PLCOL.");
gatt(&font,&col);
satt(font,colour);
grcol();
}