xref: /plan9-contrib/sys/src/cmd/plot/libplot/dpoint.c (revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
1 #include "mplot.h"
2 void dpoint(double x, double y){
3 	point(&screen, Pt(SCX(x), SCY(y)), e1->foregr, S);
4 	move(x, y);
5 }
6