Displaying 1 result from an estimated 1 matches for "null_text".
Did you mean:
  full_text
  
2005 Apr 02
2
Building new graphic device drivers with g++
...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,
                      R_GE_gcontext *gc,
                      NewDevDesc *dev) {
    Rprintf("text(%lf,%lf,\"%s\",%lf,%lf)\n", x, y, str, rot, hadj);
}
static void NULL_NewPage(R_GE_gcontext *gc,...