This is pllab.c in view mode; [Download] [Up]
/* Simple routine for labelling graphs */
#include "plplot.h"
void pllab(xlabel, ylabel, tlabel)
char *xlabel, *ylabel, *tlabel;
{
int level;
glev(&level);
if (level < 2) plexit("Please set up viewport before calling pllab.");
plmtex("t",2.0,0.5,0.5,tlabel);
plmtex("b",3.2,0.5,0.5,xlabel);
plmtex("l",5.0,0.5,0.5,ylabel);
}
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.