OSDN Git Service

Inital Commit
[eos/optional.git] / doc / Objects / Map2D.html
1 <H4> Update Time 02/03/13---05:40:32 </H4>
2 <HR>
3 <A NAME="Information">
4 <H2>Information from source codes</H2>
5 </A>
6 <PRE>
7 ../src/map2DCoordGet.c:
8 </PRE>
9 <HR>
10 <A NAME="include">
11 <H2>Map2D.h</H2>
12 </A>
13 <PRE>
14 #ifndef MAP_2D_H
15 #define MAP_2D_H
16 /*
17 # %M% %Y% %I%
18 # The latest update : %G% at %U%
19 #
20 #%Z% Map2D ver %I%
21 #%Z% Created by tacyas
22 #%Z%
23 */
24
25 /* struct begin */
26 typedef float Map2DParaTypeReal;
27 typedef long  Map2DParaTypeInteger;
28 /* struct end */
29
30
31 #ifdef __cplusplus 
32 extern "C" {
33 #endif
34
35 /* prototype begin */
36
37 extern void map2DParallelInfo(Map2DParaTypeInteger* n, 
38                                   Map2DParaTypeReal*    d,
39                                   Map2DParaTypeReal     latitude,
40                                   Map2DParaTypeInteger  nparallel,
41                                   long mode);
42
43 extern void map2DCoordGet(Map2DParaTypeReal* x,   Map2DParaTypeReal* y,
44                           Map2DParaTypeReal rotx, Map2DParaTypeReal roty,
45                       long nx, long ny, long mode);
46
47 /* prototype end */
48 #ifdef __cplusplus 
49 }
50 #endif
51 #endif /* MAP_2D_H */
52 </PRE>