ftp.nice.ch/pub/next/unix/developer/plplot.3.0.s.tar.gz#/plplot/src/plline.c

This is plline.c in view mode; [Download] [Up]

#include "plplot.h"

void plline(n,x,y)
int n;
FLOAT *x, *y;
{
      int i, level;

      glev(&level);
      if (level<3) plexit("Please set up window before calling plline.");
      movwor(x[0],y[0]);
      for(i=1; i<n; i++)
        drawor(x[i],y[i]);
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.