xref: /plan9/sys/src/cmd/plot/libplot/dpoint.c (revision 3e12c5d1bb89fc02707907988834ef147769ddaf)
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