Displaying 1 result from an estimated 1 matches for "null_circle".
2005 Apr 02
2
Building new graphic device drivers with g++
...r(dev)) {
       free(dev);
       error("unable to start NULL device");
    }
    gsetVar(install(".Device"), mkString("NULL"), R_NilValue);
    dd = GEcreateDevDesc(dev);
    Rf_addDevice((DevDesc*) dd);
    GEinitDisplayList(dd);
    return R_NilValue;
}
static void NULL_Circle(double x, double y, double r,
                        R_GE_gcontext *gc,
                        NewDevDesc *dev) {                        
    Rprintf("circle(%lf,%lf,%lf)\n", x, y, r);
}
static void NULL_Line(double x1, double y1, double x2, double y2,
                      R_GE_gcontex...