Displaying 3 results from an estimated 3 matches for "setlinetyp".
Did you mean:
setlinetype
1997 Jul 30
0
R-alpha: more on line types
...e I was at it (devPicTeX.c
doesn't seem to change the color). Should psx11.c be devpsx11.c? Diffs:
*** psx11.c.orig Wed Jul 30 10:08:48 1997
--- psx11.c Wed Jul 30 10:09:10 1997
***************
*** 293,298 ****
--- 293,299 ----
}
if(fg != NA_INTEGER) {
psx11_SetColor(fg);
+ psx11_SetLinetype(GP->lty);
PostScriptOpenRectangle(psfp,
xoffset + xscale * x0,
yoffset + yscale * y0,
*** devPicTeX.c.orig Wed Jul 30 10:16:33 1997
--- devPicTeX.c Wed Jul 30 10:11:24 1997
***************
*** 446,451 ****
--- 446,452 ----
/* Possibly Filled Rectangle */
static void PicTeX_Rec...
1997 Jul 30
0
R-alpha: line types
...v=2)
rect(3,0,4,0.5)
Here are some diffs (now all I have to do is wade through and get lwd
working properly ...)
*** devX11.c.orig Tue Jul 29 16:44:19 1997
--- devX11.c Tue Jul 29 16:57:55 1997
***************
*** 671,676 ****
--- 671,677 ----
}
if (fg != NA_INTEGER) {
SetColor(fg);
+ SetLinetype(GP->lty);
XDrawRectangle(display, window, wgc, (int)x0, (int)y0,
(int)x1 - (int)x0, (int)y1 - (int)y0);
}
*** devPS.c.orig Sun Jul 6 21:29:03 1997
--- devPS.c Tue Jul 29 17:01:05 1997
***************
*** 433,438 ****
--- 433,439 ----
}
if(fg != NA_INTEGER) {
SetColor(fg);...
1999 Feb 16
1
Missing tick marks bug on alpha solved
...c *xd = (x11Desc *) dd->deviceSpecific;
/* In-place conversion ok */
GConvert(&x1, &y1, coords, DEVICE, dd);
GConvert(&x2, &y2, coords, DEVICE, dd);
xx1 = (int) x1;
yy1 = (int) y1;
xx2 = (int) x2;
yy2 = (int) y2;
SetColor(dd->gp.col, dd);
SetLinetype(dd->gp.lty, dd->gp.lwd, dd);
XDrawLine(display, xd->window, xd->wgc, xx1, yy1, xx2, yy2);
XSync(display, 0);
}
--
George White <aa056 at chebucto.ns.ca> tel: 902.426.8509
Bedford Inst. of Oceanography, Nova Scotia, Canada.
On Thu, 11 Feb 1999, Albrecht Gebhardt wrote...