date and time created 85/01/02 20:29:43 by jak
[unix-history] / usr / src / lib / libplot / hp7221 / point.c
CommitLineData
17265bfa
RC
1#ifndef lint
2static char sccsid[] = "@(#)point.c 4.1 (Berkeley) %G%";
3#endif
4
5#include "hp7221.h"
6
7point(xi,yi)
8int xi,yi;
9{
10 if(scaleX(xi)!=currentx || scaleY(yi)!=currenty)
11 move(xi,yi);
12 cont(xi, yi);
13}