plan9port

[fork] Plan 9 from user space
git clone git://src.adamsgaard.dk/plan9port # fast
git clone https://src.adamsgaard.dk/plan9port.git # slow
Log | Files | Refs | README | LICENSE Back to index

box.c (146B)


      1 #include "mplot.h"
      2 void box(double x0, double y0, double x1, double y1){
      3 	move(x0, y0);
      4 	vec(x0, y1);
      5 	vec(x1, y1);
      6 	vec(x1, y0);
      7 	vec(x0, y0);
      8 }