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