1PLOT(3X) PLOT(3X)
2
3
4
6 plot: openpl et al. - graphics interface
7
9 openpl( )
10
11 erase( )
12
13 label(s) char s[ ];
14
15 line(x1, y1, x2, y2)
16
17 circle(x, y, r)
18
19 arc(x, y, x0, y0, x1, y1)
20
21 move(x, y)
22
23 cont(x, y)
24
25 point(x, y)
26
27 linemod(s) char s[ ];
28
29 space(x0, y0, x1, y1)
30
31 closepl( )
32
34 These subroutines generate graphic output in a relatively device-inde‐
35 pendent manner. See plot(5) for a description of their effect. Openpl
36 must be used before any of the others to open the device for writing.
37 Closepl flushes the output.
38
39 String arguments to label and linemod are null-terminated, and do not
40 contain newlines.
41
42 Various flavors of these functions exist for different output devices.
43 They are obtained by the following ld(1) options:
44
45 -lplot device-independent graphics stream on standard output for
46 plot(1) filters
47 -l300 GSI 300 terminal
48 -l300s GSI 300S terminal
49 -l450 DASI 450 terminal
50 -l4014 Tektronix 4014 terminal
51
53 plot(5), plot(1), graph(1)
54
55
56
57 PLOT(3X)