1*29808Ssklower /* 2*29808Ssklower * Copyright (c) 1980, 1986 Regents of the University of California. 3*29808Ssklower * All rights reserved. The Berkeley software License Agreement 4*29808Ssklower * specifies the terms and conditions for redistribution. 5*29808Ssklower */ 6*29808Ssklower 7*29808Ssklower #ifndef lint 8*29808Ssklower static char sccsid[] = "@(#)cont.c 6.1 (Berkeley) 08/29/86"; 9*29808Ssklower #endif not lint 10*29808Ssklower 11*29808Ssklower 12*29808Ssklower #include "grnplot.h" 13*29808Ssklower 14*29808Ssklower /*--------------------------------------------------------- 15*29808Ssklower * Cont plots a line between (curx, cury) and (x, y). 16*29808Ssklower * 17*29808Ssklower * Results: None. 18*29808Ssklower * Side Effects: As above. 19*29808Ssklower *--------------------------------------------------------- 20*29808Ssklower */ 21*29808Ssklower cont(x, y) 22*29808Ssklower int x, y; 23*29808Ssklower { 24*29808Ssklower startvector(); 25*29808Ssklower curx = x; 26*29808Ssklower cury = y; 27*29808Ssklower outcurxy(); 28*29808Ssklower } 29