Last change
on this file since 11995 was 11995, checked in by Mathieu Morlighem, 13 years ago |
merged trunk-jpl and trunk for revision 11994M
|
File size:
617 bytes
|
Rev | Line | |
---|
[1] | 1 | /*
|
---|
| 2 | ContourToMeshx.h
|
---|
| 3 | */
|
---|
| 4 |
|
---|
| 5 |
|
---|
| 6 | #ifndef _CONTOURTOMESHX_H
|
---|
| 7 | #define _CONTOURTOMESHX_H
|
---|
| 8 |
|
---|
[3913] | 9 | #include "../../shared/shared.h"
|
---|
| 10 | #include "../../objects/objects.h"
|
---|
[1] | 11 |
|
---|
[2591] | 12 | /*threading: */
|
---|
| 13 | typedef struct{
|
---|
| 14 |
|
---|
| 15 | int numcontours;
|
---|
| 16 | Contour** contours;
|
---|
| 17 | int nods;
|
---|
| 18 | int edgevalue;
|
---|
[11995] | 19 | Vector* in_nod;
|
---|
[2591] | 20 | double* x;
|
---|
| 21 | double* y;
|
---|
| 22 |
|
---|
| 23 | } ContourToMeshxThreadStruct;
|
---|
| 24 |
|
---|
| 25 |
|
---|
[1] | 26 | /* local prototypes: */
|
---|
[11995] | 27 | int ContourToMeshx( Vector** pin_nods,Vector** pin_elem, double* index, double* x, double* y,Contour** contours,int numcontours,char* interptype,int nel,int nods, int edgevalue);
|
---|
[1] | 28 |
|
---|
[2591] | 29 | void* ContourToMeshxt(void* vContourToMeshxThreadStruct);
|
---|
| 30 |
|
---|
| 31 |
|
---|
[1] | 32 | #endif /* _CONTOURTOMESHX_H */
|
---|
| 33 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.