gft_adjrel3f.h
Go to the documentation of this file.
1 
2 #ifndef _ADJREL3F_H_
3 #define _ADJREL3F_H_
4 
5 #include "gft_common.h"
6 
7 namespace gft{
8  namespace AdjRel3f{
9 
10  typedef struct _adjrel3f {
11  float *dx;
12  float *dy;
13  float *dz;
14  int n;
15  } AdjRel3f;
16 
17  AdjRel3f *Create(int n);
18  void Destroy(AdjRel3f **A);
19  AdjRel3f *Clone(AdjRel3f *A);
20 
22  char *ori);
23 
24  } /*end AdjRel3f namespace*/
25 } /*end gft namespace*/
26 
27 #endif
28 
AdjRel3f * Create(int n)
Definition: gft_adjrel3f.cpp:7
float * dz
Definition: gft_adjrel3f.h:13
AdjRel3f * Clone(AdjRel3f *A)
Definition: gft_adjrel3f.cpp:37
Definition: gft_adjrel3f.h:10
int n
Definition: gft_adjrel3f.h:14
AdjRel3f * ChangeOrientationToLPS(AdjRel3f *A, char *ori)
Definition: gft_adjrel3f.cpp:51
Header file for common definitions and function prototypes.
float * dy
Definition: gft_adjrel3f.h:12
struct gft::AdjRel3f::_adjrel3f AdjRel3f
void Destroy(AdjRel3f **A)
Definition: gft_adjrel3f.cpp:23
float * dx
Definition: gft_adjrel3f.h:11