10 #include "../shared/shared.h"
11 #include "../datastructures/datastructures.h"
14 template <
class doubletype>
34 Contour(
int pid,
int pnods, doubletype* px, doubletype* py,
bool pclosed){
38 this->closed = pclosed;
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);
48 xDelete<doubletype>(this->x);
49 xDelete<doubletype>(this->y);
56 Contour* contour =
new Contour(this->
id,this->nods,this->x,this->y,this->closed);
66 _printf_(
" Contour: " <<
id <<
"\n");
71 for(
int i=0;i<
nods;i++){
72 _printf_(i <<
": " <<
x[i] <<
" | " <<
y[i] <<
"\n");
81 void Marshall(
char** pmarshalled_data,
int* pmarshalled_data_size,
int marshall_direction){
82 _error_(
"not implemented yet!");