draw3.h

0000/**************************************
0001  draw3.h IPC GL-functions
0002**************************************/
0003
0004int glTranslatef(double x,double y,double z);
0005
0006int glRotatef(double ang,double x,double y,double z);
0007
0008int glViewport(int x0, int y0, int wid, int hei);
0009
0010int glBeginQUADS();
0011
0012int glColor3f(double r, double g, double b);
0013
0014int glVertex3f(double x,double y,double z);
0015
0016int glEnd();
0017