URI:
       tdpoint.c - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       tdpoint.c (157B)
       ---
            1 #include "mplot.h"
            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 }