1LINED(3NCARG) NCAR GRAPHICS LINED(3NCARG)
2
3
4
6 LINED - Draws a line segment between two points whose user coordinates
7 are given.
8
10 CALL LINED (XA,XB,YA,YB)
11
13 #include <ncarg/ncargC.h>
14
15 void c_lined (float xa, float xb, float ya, float yb)
16
18 XA (an input expression of type REAL) defines the X user
19 coordinate of the starting point of a line segment.
20
21 YA (an input expression of type REAL) defines the Y user
22 coordinate of the starting point of a line segment.
23
24 XB (an input expression of type REAL) defines the X user
25 coordinate of the ending point of a line segment.
26
27 YB (an input expression of type REAL) defines the Y user
28 coordinate of the ending point of a line segment.
29
31 The C-binding argument descriptions are the same as the FORTRAN
32 argument descriptions.
33
35 Use the ncargex command to see the following relevant examples: tdashc,
36 tdashl, tdashp, tdashs, fcoord1, fcoord2, fdldashc, fdldashd, fgklnclr,
37 fgklnwth dashdb, dashdc, frstd, lined, reset, vectd, ncarg_cbind
38
40 To use LINED or c_lined, load the NCAR Graphics libraries ncarg,
41 ncarg_gks, and ncarg_c, preferably in that order.
42
44 Online: dashline, dashline_params, curved, dashdb, dashdc, frstd,
45 lastd, reset, vectd, ncarg_cbind
46
47 Hardcopy: NCAR Graphics Contouring and Mapping Tutorial; NCAR Graphics
48 Fundamentals, UNIX Version; User's Guide for NCAR GKS-0A Graphics
49
51 Copyright (C) 1987-2009
52 University Corporation for Atmospheric Research
53 The use of this Software is governed by a License Agreement.
54
55
56
57UNIX March 1993 LINED(3NCARG)