xref: /plan9/sys/src/cmd/plot/libplot/dpoint.c (revision 7dd7cddf99dd7472612f1413b4da293630e6b1bc)
1 #include "mplot.h"
dpoint(double x,double y)2 void dpoint(double x, double y){
3 	draw(screen, Rect(SCX(x), SCY(y), SCX(x)+1, SCY(y)+1), getcolor(e1->foregr),
4 		nil, ZP);
5 	move(x, y);
6 }
7