Displaying 1 result from an estimated 1 matches for "null_rect".
Did you mean:
  null_read
  
2005 Apr 02
2
Building new graphic device drivers with g++
...t *gc,
                         NewDevDesc *dev) {
    Rprintf("polygon(%d)\n", n);
}
static void NULL_Polyline(int n, double *x, double *y, 
                          R_GE_gcontext *gc,
                          NewDevDesc *dev) {
    Rprintf("polyline(%d)\n", n);
}
static void NULL_Rect(double x0, double y0, double x1, double y1,
                      R_GE_gcontext *gc,
                      NewDevDesc *dev) {
    Rprintf("rectangle(%lf,%lf,%lf,%lf)\n", x0, y0, x1, y1);
}
static void NULL_Text(double x, double y, char *str, 
                      double rot, double hadj,...