Displaying 2 results from an estimated 2 matches for "lwdsave".
Did you mean:
logsave
2000 Jan 17
1
lwd patches for "contour"
...esc *dd = CurrentDevice();
--- 396,409 ----
}
}
! /* contour(x,y,z, levels, col, lty, lwd) */
SEXP do_contour(SEXP call, SEXP op, SEXP args, SEXP env)
{
! SEXP oargs, c, x, y, z, col, lty, lwd;
! int i, j, nx, ny, nc, ncol, nlty, nlwd;
int ltysave, colsave;
+ double lwdsave;
double atom, zmin, zmax;
char *vmax, *vmax0;
DevDesc *dd = CurrentDevice();
***************
*** 439,445 ****
PROTECT(lty = FixupLty(GetPar("lty", args), dd->gp.lty));
nlty = length(lty);
! /* col, lwd and lty vectors here --- FIXME: "lwd"...
2000 Feb 08
1
DEC cc doesn't like c++ comments (PR#416)
...codestring);
vmaxset(vmax);
- // free (codestring);
+ /* free (codestring); */
return label_width;
}
@@ -281,9 +281,9 @@
srtsave = dd->gp.srt;
dd->gp.srt = rotation;
- // dd->gp.lwd set in _draw_hershey_string
+ /* dd->gp.lwd set in _draw_hershey_string */
lwdsave = dd->gp.lwd;
- // When drawing vector font, always use "solid" lines
+ /* When drawing vector font, always use "solid" lines */
ltysave = dd->gp.lty;
dd->gp.lty = LTY_SOLID;
@@ -330,7 +330,7 @@
GConvertYUnits(y_offset * label_height, g_unit, INCHES,...