1TDLINE(3NCARG) NCAR GRAPHICS TDLINE(3NCARG)
2
3
4
6 TDLINE - Given the coordinates of two points in 3-space, draw the
7 projection of the line joining them.
8
10 CALL TDLINE (UCP1, VCP1, WCP1, UCP2, VCP2, WCP2)
11
13 #include <ncarg/ncargC.h>
14
15 void c_tdline(float ucp1, float vcp1, float wcp1, float ucp2, float
16 vcp2, float wcp2)
17
19 The arguments of TDLINE are as follows:
20
21 UCP1, VCP1, and WCP1
22 (input expressions of type REAL) - the coordinates of a point
23 in 3-space.
24
25 UCP2, VCP2, and WCP2
26 (input expressions of type REAL) - the coordinates of another
27 point in 3-space.
28
30 The C-binding argument descriptions are the same as the FORTRAN
31 argument descriptions.
32
34 To use TDLINE or c_tdline, load the NCAR Graphics libraries ncarg,
35 ncarg_gks, and ncarg_c, preferably in that order.
36
38 Online: tdclrs, tdctri, tddtri, tdgeti, tdgetr, tdgrds, tdgrid, tdgtrs,
39 tdinit, tditri, tdlbla, tdlbls, tdlnpa, tdmtri, tdotri, tdpack,
40 tdpack_params, tdpara, tdplch, tdprpa, tdprpi, tdprpt, tdseti, tdsetr,
41 tdsort, tdstri, tdstrs
42
44 Copyright (C) 1987-2009
45 University Corporation for Atmospheric Research
46 The use of this Software is governed by a License Agreement.
47
48
49
50UNIX July 1997 TDLINE(3NCARG)