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