C*PGSLW -- set line width C%void cpgslw(int lw); C+ SUBROUTINE PGSLW (LW) INTEGER LW C C Set the line-width attribute. This attribute affects lines, graph C markers, and text. The line width is specified in units of 1/200 C (0.005) inch (about 0.13 mm) and must be an integer in the range C 1-201. On some devices, thick lines are generated by tracing each C line with multiple strokes offset in the direction perpendicular to C the line. C C Argument: C LW (input) : width of line, in units of 0.005 inch (0.13 mm) C in range 1-201. C-- C 8-Aug-1985 - new routine, equivalent to GRSLW [TJP]. C 1-Feb-1995 - change comment [TJP]. C----------------------------------------------------------------------- LOGICAL PGNOTO C IF (PGNOTO('PGSLW')) RETURN CALL GRSLW(LW) END