plan9port/src/cmd/plot/libplot/dpoint.c
2004-04-14 19:54:10 +00:00

7 lines
157 B
C

#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);
}