1*13364Ssam /* con.h 4.1 83/06/27 */ 2*13364Ssam 3*13364Ssam # 4*13364Ssam #include <sgtty.h> 5*13364Ssam /* gsi plotting output routines */ 6*13364Ssam # define DOWN 012 7*13364Ssam # define UP 013 8*13364Ssam # define LEFT 010 9*13364Ssam # define RIGHT 040 10*13364Ssam # define BEL 007 11*13364Ssam # define ESC 033 12*13364Ssam # define ACK 006 13*13364Ssam #define PLOTIN 063 14*13364Ssam #define PLOTOUT 064 15*13364Ssam # define CR 015 16*13364Ssam # define FF 014 17*13364Ssam # define VERTRESP 48 18*13364Ssam # define HORZRESP 60. 19*13364Ssam # define VERTRES 8. 20*13364Ssam # define HORZRES 6. 21*13364Ssam /* down is line feed, up is reverse line feed, 22*13364Ssam left is backspace, right is space. 48 points per inch 23*13364Ssam vertically, 60 horizontally */ 24*13364Ssam 25*13364Ssam extern int xnow, ynow; 26*13364Ssam extern int OUTF; 27*13364Ssam extern struct sgttyb ITTY, PTTY; 28*13364Ssam extern float HEIGHT, WIDTH, OFFSET; 29*13364Ssam extern int xscale, xoffset, yscale; 30*13364Ssam extern float botx, boty, obotx, oboty, scalex,scaley; 31*13364Ssam 32