1TDPRPA(3NCARG) NCAR GRAPHICS TDPRPA(3NCARG)
2
3
4
6 TDPRPA - Given the parallelogram coordinates of a point, get the
7 coordinates of its projection in the projection plane. This routine is
8 essentially the inverse of the routine TDPRPI.
9
11 CALL TDPRPA (XIPA, YIPA, XI2D, YI2D)
12
14 #include <ncarg/ncargC.h>
15
16 void c_tdprpa(float xipa, float yipa, float *xi2d, float *yi2d)
17
19 The arguments of TDPRPA are as follows:
20
21 XIPA and YIPA
22 (input expressions of type REAL) - the parallelogram
23 coordinates of a point. (The parallelogram is as defined by a
24 prior call to TDPARA.)
25
26 XI2D and YI2D
27 (output variables of type REAL) - the coordinates of the
28 projection of the point in the projection plane.
29
31 The C-binding argument descriptions are the same as the FORTRAN
32 argument descriptions.
33
35 To use TDPRPA or c_tdprpa, load the NCAR Graphics libraries ncarg,
36 ncarg_gks, and ncarg_c, preferably in that order.
37
39 Online: tdclrs, tdctri, tddtri, tdgeti, tdgetr, tdgrds, tdgrid, tdgtrs,
40 tdinit, tditri, tdlbla, tdlbls, tdline, tdlnpa, tdmtri, tdotri, tdpack,
41 tdpack_params, tdpara, tdplch, tdprpi, tdprpt, tdseti, tdsetr, tdsort,
42 tdstri, tdstrs
43
45 Copyright (C) 1987-2009
46 University Corporation for Atmospheric Research
47 The use of this Software is governed by a License Agreement.
48
49
50
51UNIX July 1997 TDPRPA(3NCARG)