1GPL(3NCARG) NCAR GRAPHICS GPL(3NCARG)
2
3
4
6 GPL (Polyline) - This output primitive draws line segments connecting a
7 sequence of user-specified coordinate pairs.
8
10 CALL GPL (N, X, Y)
11
13 #include <ncarg/gks.h>
14
15 void gpolyline(const Gpoint_list *point_list);
16
18 N (Integer, Input) - The number of points in the line to be
19 drawn. N must be larger than one.
20
21 X (N) (Real Array, Input) - The X coordinates (specified in world
22 coordinates) of the N points to be connected by line seg‐
23 ments.
24
25 Y (N) (Real Array, Input) - The Y coordinates (specified in world
26 coordinates) of the N points to be connected by line seg‐
27 ments.
28
30 Note that the coordinate pairs must be in world coordinates and not
31 user coordinates. Among other things, this means that the log scaling
32 and mirror-imaging features available via the SET call and the SPPS
33 functions for drawing lines are not applicable here.
34
36 To use GKS routines, load the NCAR GKS-0A library ncarg_gks.
37
39 Online: gsln, gslwsc, gscr, gsplci, gqln, gqlwsc, gqplci, dashline,
40 set, gpolyline
41
42 Hardcopy: User's Guide for NCAR GKS-0A Graphics; NCAR Graphics Funda‐
43 mentals, UNIX Version "The Use of X/Y Coordinates in NCAR Graphics" SCD
44 User Document"
45
47 Copyright (C) 1987-2009
48 University Corporation for Atmospheric Research
49 The use of this Software is governed by a License Agreement.
50
51
52
53UNIX March 1993 GPL(3NCARG)