/* ContourToMeshx.h */ #ifndef _CONTOURTOMESHX_H #define _CONTOURTOMESHX_H #include "../../shared/shared.h" #include "../../objects/objects.h" /*threading: */ typedef struct{ int numcontours; Contour** contours; int nods; int edgevalue; Vec in_nod; double* x; double* y; } ContourToMeshxThreadStruct; /* local prototypes: */ int ContourToMeshx( Vec* pin_nods,Vec* pin_elem, double* index, double* x, double* y,Contour** contours,int numcontours,char* interptype,int nel,int nods, int edgevalue); void* ContourToMeshxt(void* vContourToMeshxThreadStruct); #endif /* _CONTOURTOMESHX_H */