Ice Sheet System Model  4.18
Code documentation
Contour.h
Go to the documentation of this file.
1 
5 #ifndef _CONTOUR_H_
6 #define _CONTOUR_H_
7 
8 /*Headers:*/
9 /*{{{*/
10 #include "../shared/shared.h"
11 #include "../datastructures/datastructures.h"
12 /*}}}*/
13 
14 template <class doubletype>
15 class Contour: public Object{
16 
17  public:
18 
19  int id;
20  int nods; //number of vertices in the contour
21  doubletype *x;
22  doubletype *y;
23  bool closed; //is this contour closed?
24 
25  /*Contour constructors, destructors :*/
26  Contour(){/*{{{*/
27  this->id = 0;
28  this->nods = 0;
29  this->x = NULL;
30  this->y = NULL;
31  this->closed = false;
32  }
33  /*}}}*/
34  Contour(int pid,int pnods, doubletype* px, doubletype* py,bool pclosed){/*{{{*/
35 
36  this->id = pid;
37  this->nods = pnods;
38  this->closed = pclosed;
39  if(nods){
40  this->x=xNew<doubletype>(nods);
41  xMemCpy<doubletype>(this->x,px,nods);
42  this->y=xNew<doubletype>(nods);
43  xMemCpy<doubletype>(this->y,py,nods);
44  }
45  }
46  /*}}}*/
47  ~Contour(){/*{{{*/
48  xDelete<doubletype>(this->x);
49  xDelete<doubletype>(this->y);
50  }
51  /*}}}*/
52 
53  /*Object virtual function resolutoin: */
54  Object* copy() {/*{{{*/
55 
56  Contour* contour = new Contour(this->id,this->nods,this->x,this->y,this->closed);
57 
58  return (Object*) contour;
59  }
60  /*}}}*/
61  void DeepEcho(void){/*{{{*/
62  this->Echo();
63  }
64  /*}}}*/
65  void Echo(void){/*{{{*/
66  _printf_(" Contour: " << id << "\n");
67  _printf_(" nods: " << nods << "\n");
68  _printf_(" closed: " << (closed?"true":"false") << "\n");
69  if(nods){
70  _printf_(" x , y:\n");
71  for(int i=0;i<nods;i++){
72  _printf_(i << ": " << x[i] << " | " << y[i] << "\n");
73  }
74  }
75  }
76  /*}}}*/
77  int Id(void){/*{{{*/
78  return id;
79  }
80  /*}}}*/
81  void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){/*{{{*/
82  _error_("not implemented yet!");
83  }
84  /*}}}*/
85  int ObjectEnum(void){/*{{{*/
86  return ContourEnum;
87  }
88  /*}}}*/
89 
90 };
91 
92 #endif /* _CONTOUR_H_ */
ContourEnum
@ ContourEnum
Definition: EnumDefinitions.h:1015
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
Contour::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: Contour.h:81
Contour::Id
int Id(void)
Definition: Contour.h:77
Contour::ObjectEnum
int ObjectEnum(void)
Definition: Contour.h:85
Contour
Definition: Contour.h:15
Contour::Contour
Contour()
Definition: Contour.h:26
Object
Definition: Object.h:13
Contour::nods
int nods
Definition: Contour.h:20
Contour::closed
bool closed
Definition: Contour.h:23
Contour::y
doubletype * y
Definition: Contour.h:22
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
Contour::id
int id
Definition: Contour.h:19
Contour::x
doubletype * x
Definition: Contour.h:21
Contour::Contour
Contour(int pid, int pnods, doubletype *px, doubletype *py, bool pclosed)
Definition: Contour.h:34
Contour::copy
Object * copy()
Definition: Contour.h:54
Contour::Echo
void Echo(void)
Definition: Contour.h:65
Contour::~Contour
~Contour()
Definition: Contour.h:47
Contour::DeepEcho
void DeepEcho(void)
Definition: Contour.h:61