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-2007
46 University Corporation for Atmospheric Research
47
48 This documentation is free software; you can redistribute it and/or
49 modify it under the terms of the GNU General Public License as
50 published by the Free Software Foundation; either version 2 of the
51 License, or (at your option) any later version.
52
53 This software is distributed in the hope that it will be useful, but
54 WITHOUT ANY WARRANTY; without even the implied warranty of
55 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
56 General Public License for more details.
57
58 You should have received a copy of the GNU General Public License along
59 with this software; if not, write to the Free Software Foundation,
60 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
61
62
63
64UNIX July 1997 TDPRPA(3NCARG)