Displaying 3 results from an estimated 3 matches for "ltysave".
Did you mean:
  logsave
  
2000 Jan 17
1
lwd patches for "contour"
...08:08 2000
--- src/main/plot3d.c	Mon Jan 17 13:47:03 2000
***************
*** 396,408 ****
  	}
  }
  
! /* contour(x,y,z, levels, col, lty) */
  
  SEXP do_contour(SEXP call, SEXP op, SEXP args, SEXP env)
  {
!     SEXP oargs, c, x, y, z, col, lty;
!     int i, j, nx, ny, nc, ncol, nlty;
      int ltysave, colsave;
      double atom, zmin, zmax;
      char *vmax, *vmax0;
      DevDesc *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...
1997 May 11
2
R-alpha: Logarithmic scales
..."plot.c" 
overrides the yt() function... What about this (lines 983-1031):
SEXP do_rect(SEXP call, SEXP op, SEXP args, SEXP env)
{
    SEXP sxl, sxr, syb, sys, col, lty, border;
    double *xl, *xr, *yb, *ys;
    int i, n, nxl, nxr, nyb, nys;
    int ncol, nlty, nborder;
    int colsave, ltysave;
    GCheckState();
    if(length(args) < 4) errorcall(call, "too few arguments\n");
    xypoints(call, args, &n);
    sxl = CAR(args); nxl = length(sxl); args = CDR(args);
    syb = CAR(args); nyb = length(syb); args = CDR(args);
    sxr = CAR(args); nxr = length(sxr); args = C...
2000 Feb 08
1
DEC cc doesn't like c++ comments (PR#416)
...rt;
   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, dd));
     /* call stroker on the sequence of strokes obtained from each char (the
        stroker may manipulate the line width) */
-//_draw_hershey_stroke (dd, tru...