1*19974Sdist /* 2*19974Sdist * Copyright (c) 1980 Regents of the University of California. 3*19974Sdist * All rights reserved. The Berkeley software License Agreement 4*19974Sdist * specifies the terms and conditions for redistribution. 5*19974Sdist */ 6*19974Sdist 715495Sralph #ifndef lint 8*19974Sdist static char sccsid[] = "@(#)point.c 5.1 (Berkeley) 05/07/85"; 9*19974Sdist #endif not lint 1015495Sralph 1115495Sralph #include "gigi.h" 1215495Sralph 1315495Sralph point(xi,yi) 1415495Sralph int xi,yi; 1515495Sralph { 1615495Sralph if(xsc(xi)!=currentx || ysc(yi)!=currenty) 1715495Sralph move(xi,yi); 1815495Sralph printf("V[]"); 1915495Sralph } 20