1PLPATH(3plplot) PLplot API PLPATH(3plplot)
2
3
4
6 plpath - Draw a line between two points, accounting for coordinate
7 transforms
8
10 plpath(n, x1, y1, x2, y2)
11
13 Joins the point (x1, y1) to (x2, y2) . If a global coordinate transā
14 form is defined then the line is broken in to n segments to approximate
15 the path. If no transform is defined then this simply acts like a call
16 to pljoin(3plplot).
17
18 Redacted form: plpath(n,x1,y1,x2,y2)
19
20 This function is used in example 22.
21
23 n (PLINT(3plplot), input)
24 number of points to use to approximate the path.
25
26 x1 (PLFLT(3plplot), input)
27 x coordinate of first point.
28
29 y1 (PLFLT(3plplot), input)
30 y coordinate of first point.
31
32 x2 (PLFLT(3plplot), input)
33 x coordinate of second point.
34
35 y2 (PLFLT(3plplot), input)
36 y coordinate of second point.
37
38
40 Many developers (who are credited at http://plplot.org/credits.php)
41 have contributed to PLplot over its long history.
42
44 PLplot documentation at http://plplot.org/documentation.php.
45
46
47
48 February, 2019 PLPATH(3plplot)