xref: /csrg-svn/lib/libplot/t300/con.h (revision 61399)
148521Sbostic /*-
2*61399Sbostic  * Copyright (c) 1983, 1993
3*61399Sbostic  *	The Regents of the University of California.  All rights reserved.
448521Sbostic  *
548521Sbostic  * %sccs.include.proprietary.c%
648521Sbostic  *
7*61399Sbostic  *	@(#)con.h	8.1 (Berkeley) 06/04/93
848521Sbostic  */
913312Ssam 
1013312Ssam #include <sgtty.h>
1113312Ssam /* gsi plotting output routines */
1213312Ssam # define DOWN 012
1313312Ssam # define UP 013
1413312Ssam # define LEFT 010
1513312Ssam # define RIGHT 040
1613312Ssam # define BEL 007
1713312Ssam # define ESC 033
1813312Ssam # define ACK 006
1913312Ssam # define CR 015
2013312Ssam # define FF 014
2113312Ssam # define VERTRESP 48
2213312Ssam # define HORZRESP 60.
2313312Ssam # define VERTRES 8.
2413312Ssam # define HORZRES 6.
2513312Ssam /* down is line feed, up is reverse line feed,
2613312Ssam    left is backspace, right is space.  48 points per inch
2713312Ssam    vertically, 60 horizontally */
2813312Ssam 
2913312Ssam extern int xnow, ynow;
3013312Ssam extern int OUTF;
3113312Ssam extern struct sgttyb ITTY, PTTY;
3213312Ssam extern float HEIGHT, WIDTH, OFFSET;
3313312Ssam extern int xscale, xoffset, yscale;
3413312Ssam extern float botx, boty, obotx, oboty, scalex,scaley;
3513312Ssam 
36