1*48511Sbostic /*- 2*48511Sbostic * Copyright (c) 1980, 1986 The Regents of the University of California. 3*48511Sbostic * All rights reserved. 4*48511Sbostic * 5*48511Sbostic * %sccs.include.proprietary.c% 629808Ssklower */ 729808Ssklower 829808Ssklower #ifndef lint 9*48511Sbostic static char sccsid[] = "@(#)cont.c 6.2 (Berkeley) 04/22/91"; 10*48511Sbostic #endif /* not lint */ 1129808Ssklower 1229808Ssklower #include "grnplot.h" 1329808Ssklower 1429808Ssklower /*--------------------------------------------------------- 1529808Ssklower * Cont plots a line between (curx, cury) and (x, y). 1629808Ssklower * 1729808Ssklower * Results: None. 1829808Ssklower * Side Effects: As above. 1929808Ssklower *--------------------------------------------------------- 2029808Ssklower */ 2129808Ssklower cont(x, y) 2229808Ssklower int x, y; 2329808Ssklower { 2429808Ssklower startvector(); 2529808Ssklower curx = x; 2629808Ssklower cury = y; 2729808Ssklower outcurxy(); 2829808Ssklower } 29