1PLSTYL(3plplot) PLplot API PLSTYL(3plplot)
2
3
4
6 plstyl - Set line style
7
9 plstyl(nels, mark, space)
10
12 This sets up the line style for all lines subsequently drawn. A line
13 consists of segments in which the pen is alternately down and up. The
14 lengths of these segments are passed in the arrays mark and space
15 respectively. The number of mark-space pairs is specified by nels. In
16 order to return the line style to the default continuous line,
17 plstyl(3plplot) should be called with nels=0.(see also pllsty(3plplot))
18
19 Redacted form: plstyl(mark, space)
20
21 This function is used in examples 1,9,14.
22
24 nels (PLINT, input)
25 The number of mark and space elements in a line. Thus a simple
26 broken line can be obtained by setting nels=1. A continuous
27 line is specified by setting nels=0.
28
29 mark (PLINT *, input)
30 Pointer to array with the lengths of the segments during which
31 the pen is down, measured in micrometers.
32
33 space (PLINT *, input)
34 Pointer to array with the lengths of the segments during which
35 the pen is up, measured in micrometers.
36
37
39 Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This
40 man page was automatically generated from the DocBook source of the
41 PLplot documentation, maintained by Alan W. Irwin and Rafael
42 Laboissiere.
43
45 PLplot documentation at http://plplot.sourceforge.net/resources.
46
47
48
49 July, 2010 PLSTYL(3plplot)