source: issm/trunk/src/c/modules/ContourToMeshx/ContourToMeshx.h@ 3913

Last change on this file since 3913 was 3913, checked in by Eric.Larour, 15 years ago

Moved all objects in Bamg to objects directory.
Moved all solutions from parallel to solutoins.
Moved all modules from top c/ directory to c/modules directory
cleaned up all object dependencies in Bamg/objects (fiouh!)
That will do for the week-end:)

File size: 605 bytes
Line 
1/*
2 ContourToMeshx.h
3*/
4
5
6#ifndef _CONTOURTOMESHX_H
7#define _CONTOURTOMESHX_H
8
9#include "../../shared/shared.h"
10#include "../../objects/objects.h"
11
12/*threading: */
13typedef struct{
14
15 int numcontours;
16 Contour** contours;
17 int nods;
18 int edgevalue;
19 Vec in_nod;
20 double* x;
21 double* y;
22
23} ContourToMeshxThreadStruct;
24
25
26/* local prototypes: */
27int 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);
28
29void* ContourToMeshxt(void* vContourToMeshxThreadStruct);
30
31
32#endif /* _CONTOURTOMESHX_H */
33
Note: See TracBrowser for help on using the repository browser.