Displaying 1 result from an estimated 1 matches for "null_polylin".
Did you mean:
null_polyline
2005 Apr 02
2
Building new graphic device drivers with g++
...NewDevDesc *dev) {
Rprintf("line(%lf,%lf,%lf,%lf)\n", x1, y1, x2, y2);
}
static void NULL_Polygon(int n, double *x, double *y,
R_GE_gcontext *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,
New...