Displaying 1 result from an estimated 1 matches for "null_newpag".
Did you mean:
null_newpage
2005 Apr 02
2
Building new graphic device drivers with g++
...0, 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,
NewDevDesc *dev) {
Rprintf("newpage\n");
}
static void NULL_Close(NewDevDesc *dev) {
Rprintf("close\n");
}
Rboolean NULL_Open(NewDevDesc *dev) {
Rprintf("open\n");
return TRUE;
}
static void NULL_Activate(New...