5.3 Controlling Pixel Selection
As previously described, pixel selection can be thought of as the first of four stages in the drawing process. The pixels drawn are selected by a combination of the graphics primitive and various members of the graphics context. This section describes those GC elements.
5.3.1 Line Characteristics
Six of the graphics context components are line characteristics. These components obviously affect the graphics primitives that draw lines, but they also affect those that draw unfilled rectangles, arcs, and polygons. Here are the six line characteristics:
line_widthSpecifies the width of the line in pixels. Zero means to draw using the server’s fastest algorithm with a line width of one pixel, with some loss of accuracy.
line_styleSpecifies whether the line is solid in foreground, dashed in foreground, or alternating foreground and background. Possible values are
LineSolid,LineOnOffDash, orLineDoubleDash.cap_styleControls the appearance of the ends of a line and in some cases the ends of dashes in a line. Possible values are
CapButt,CapNotLast,CapProjecting, andCapRound.join_styleControls the appearance of joints between consecutive lines drawn within a single graphics primitive. Possible values are
JoinBevel,JoinMiter, andJoinRound.dashesSpecifies a pattern of dash lengths for custom-designed dashed lines. (Used only if the
line_styleisLineOnOffDashorLineDoubleDash.)dash_offsetSpecifies the starting point of the dash pattern for custom-designed dashed ...