OSDN Git Service

new file: bin/mrcImageRandomParticlesImageCreate
[eos/base.git] / src / Objects / General / eosPoint / doc / eosPoint.html
1 <H4> Update Time 06/12/13---03:54:34 </H4>
2 <HR>
3 <A NAME="Information">
4 <H2>Information from source codes</H2>
5 </A>
6 <PRE>
7 ../src/eosPointRead.c:
8 </PRE>
9 <HR>
10 <A NAME="include">
11 <H2>eosPoint.h</H2>
12 </A>
13 <PRE>
14 #ifndef EOS_POINT_H
15 #define EOS_POINT_H
16
17 #include <stdio.h>
18
19 /* constant begin */
20
21
22 /* constant end */
23
24 /* struct begin */
25
26 typedef double eosPointParaTypeReal;
27 typedef struct eosPoint {
28         eosPointParaTypeReal x;
29         eosPointParaTypeReal y;  
30         eosPointParaTypeReal z;  
31 } eosPoint;
32
33 typedef struct eosPointList {
34         eosPoint p;
35         struct eosPointList* next;
36         struct eosPointList* prev;
37 } eosPointList ;
38
39
40 /* struct end */
41
42 #ifdef __cplusplus
43 extern "C" {
44 #endif
45
46 /* prototype begin */
47
48 /* prototype end */
49
50 #ifdef __cplusplus
51 };
52 #endif
53
54
55 #endif  /* EOS_POINT_H */ 
56 </PRE>