Displaying 3 results from an estimated 3 matches for "grect".
Did you mean:
  great
  
2008 Jul 26
1
the C function drawing a rectangle: heatmap() -> image() -> do_image() -> GRect() -> GERect() -> rect() -> do_rect() -> GRect() ??
Hello anyone used to do similar things: search for the final C function that corresponding to the drawing of a rectangle? 
As listed in the subject, I started from heatmap() in R and after several steps reached the GRect() in C. However, then it refers to rect() which further seems to refer to do_rect(), and then, surpringly, do_rect refers to GRect()!!! A dependency circle! How can it work if no functions soly taking the job for drawing a rectangle?  
I know there must be somewhere wrong in my above function &quo...
2012 Mar 13
0
111 FIXMEs in main/src
...-       the specific drivers. */
--
plot.c:		    /* FIXME: should this skip 0-sized symbols? */
plot.c-		    thiscol = INTEGER(col)[i % ncol];
--
plot.c:	/* FIXME?
plot.c-	 * Seems like the logic here is just draw from xmin to xmax
--
plot.c:		/* FIXME: should this skip 0-sized symbols? */
plot.c-		GRect(xx - rx, yy - rx, xx + rx, yy + rx, DEVICE,
--
plot.c:		/* FIXME: should this skip 0-sized symbols? */
plot.c-		GRect(xx - rx, yy - ry, xx + rx, yy + ry, DEVICE,
--
plot.c:		/* FIXME: should this skip 0-sized symbols? */
plot.c-		for(j = 0; j < nc; j++) {
--
printarray.c:/* FIXME: sort out encod...
1997 May 11
2
R-alpha: Logarithmic scales
...yb = REAL(syb);
    ys = REAL(sys);
    ltysave = GP->lty;
    colsave = GP->col;
    GMode(1);
    for (i = 0; i < n; i++) {
        if (FINITE(xt(xl[i%nxl])) && FINITE(yt(yb[i%nyb]))
            && FINITE(xt(xr[i%nxr])) && FINITE(yt(ys[i%nys])))
                GRect(XMAP(xt(xl[i % nxl])), YMAP(yt(yb[i % nyb])),
                      XMAP(xt(xr[i % nxr])), YMAP(yt(ys[i % nys])),
                    INTEGER(col)[i % ncol],
                    INTEGER(border)[i % nborder]);
    }
    GMode(0);
    GP->col = colsave;
    GP->lty = ltysave;
    UNPROTECT(3);...