home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d2xx
/
d222
/
plplot.lha
/
Plplot
/
src
/
source.zoo
/
plline.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-05-15
|
255b
|
14 lines
#include "plplot.h"
void plline(n,x,y)
int n;
float x[],y[];
{
int i,level;
glev(&level);
if (level<3) fatal("Please set up window before calling PLLINE.");
movwor(x[0],y[0]);
for(i=0; i<n; i++)
drawor(x[i],y[i]);
}