source: issm/trunk-jpl/src/c/modules/ContourToMeshx/ContourToMeshx.h@ 14965

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

CHG: modified IsInPoly prototype, which triggered new dependency cyclicalities which had to be fixed.

File size: 590 bytes
Line 
1/*
2 ContourToMeshx.h
3*/
4
5#ifndef _CONTOURTOMESHX_H
6#define _CONTOURTOMESHX_H
7
8#include "../../shared/shared.h"
9#include "../../classes/objects/objects.h"
10
11/*threading: */
12typedef struct{
13
14 DataSet *contours;
15 int nods;
16 int edgevalue;
17 double* in_nod;
18 double *x;
19 double *y;
20
21} ContourToMeshxThreadStruct;
22
23/* local prototypes: */
24int ContourToMeshx(double** pin_nods,double** pin_elem, double* index, double* x, double* y,DataSet* contours,char* interptype,int nel,int nods, int edgevalue);
25
26void* ContourToMeshxt(void* vContourToMeshxThreadStruct);
27
28#endif /* _CONTOURTOMESHX_H */
Note: See TracBrowser for help on using the repository browser.