home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 2: PC
/
frozenfish_august_1995.bin
/
bbs
/
d01xx
/
d0165.lha
/
PlotView
/
Plot
/
plottst.c
< prev
next >
Wrap
C/C++ Source or Header
|
1988-11-22
|
442b
|
28 lines
/* plottst.c : test the Unix plot commands
*
* by Joel Swank 4/19/88
*/
main(argc,argv)
int argc;
char *argv[];
{
openpl();
space(0,0,4096,4096);
erase();
move(100,100);
label("Test label");
line(200,300,300,400);
circle(500,500,50);
circle(500,500,200);
point(1000,1000);
arc(1000,1000,1100,1000,1000,1100);
cont(600,700);
point(50,50);
point(50,52);
point(50,54);
linemod("dotted");
line(250,350,350,450);
closepl();
}