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

Last change on this file since 13975 was 13975, checked in by Mathieu Morlighem, 12 years ago

merged trunk-jpl and trunk for revision 13974

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