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

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

merged trunk-jpl and trunk for revision 13393

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