148511Sbostic /*- 2*61389Sbostic * Copyright (c) 1980, 1986, 1993 3*61389Sbostic * The Regents of the University of California. All rights reserved. 448511Sbostic * 548511Sbostic * %sccs.include.proprietary.c% 629808Ssklower */ 729808Ssklower 829808Ssklower #ifndef lint 9*61389Sbostic static char sccsid[] = "@(#)cont.c 8.1 (Berkeley) 06/04/93"; 1048511Sbostic #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 */ cont(x,y)2129808Ssklowercont(x, y) 2229808Ssklower int x, y; 2329808Ssklower { 2429808Ssklower startvector(); 2529808Ssklower curx = x; 2629808Ssklower cury = y; 2729808Ssklower outcurxy(); 2829808Ssklower } 29