Last change
on this file since 10937 was 5032, checked in by Eric.Larour, 15 years ago |
Added InterpFromMesh2d module, from ISSM2.0, to go around some of Bamg
error messages. We'll get rid of it later, when bugs are addressed.
|
File size:
782 bytes
|
Line | |
---|
1 | /*!\file InterpFromMeshToMesh2d.h
|
---|
2 | * \brief: prototype for Data Interpolation mex module.
|
---|
3 | */
|
---|
4 |
|
---|
5 | #ifndef _INTERPFROMMESHTOMESH2d_H
|
---|
6 | #define _INTERPFROMMESHTOMESH2d_H
|
---|
7 |
|
---|
8 | /* local prototypes: */
|
---|
9 | void InterpFromMeshToMesh2dUsage(void);
|
---|
10 |
|
---|
11 | #include "../../c/modules/modules.h"
|
---|
12 | #include "../../c/Container/Container.h"
|
---|
13 | #include "../../c/shared/shared.h"
|
---|
14 |
|
---|
15 | #undef __FUNCT__
|
---|
16 | #define __FUNCT__ "InterpFromMeshToMesh2d"
|
---|
17 |
|
---|
18 |
|
---|
19 | /* serial input macros: */
|
---|
20 | #define INDEXHANDLE prhs[0]
|
---|
21 | #define XHANDLE prhs[1]
|
---|
22 | #define YHANDLE prhs[2]
|
---|
23 | #define DATAHANDLE prhs[3]
|
---|
24 | #define XINTERPHANDLE prhs[4]
|
---|
25 | #define YINTERPHANDLE prhs[5]
|
---|
26 | #define DEFAULTHANDLE prhs[6]
|
---|
27 | #define FILENAME prhs[7]
|
---|
28 |
|
---|
29 | /* serial output macros: */
|
---|
30 | #define DATAINTERP (mxArray**)&plhs[0]
|
---|
31 |
|
---|
32 | /* serial arg counts: */
|
---|
33 | #undef NLHS
|
---|
34 | #define NLHS 1
|
---|
35 |
|
---|
36 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.