search for: pictex_lineto

Displaying 1 result from an estimated 1 matches for "pictex_lineto".

1997 Jul 30
0
R-alpha: more on line types
...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_Rect(double x0, double y0, double x1, double y1, int bg, int fg) { + SetLinetype(GP->lty); PicTeX_MoveTo(x0, y0); PicTeX_LineTo(x1, y0); PicTeX_LineTo(x1, y1); A less trivial question about setting line widths: in X, the same call (XSetLineAttributes) sets both line type and line width. In PostScript there are two separate calls. The following quick hack to SetLinetype() appears to work pretty well for X11, altho...