Last change
on this file since 12004 was 12004, checked in by cborstad, 13 years ago |
merged trunk-jpl into trunk-jpl-damage through revision 11990
|
File size:
819 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/include/globals.h"
|
---|
12 | #include "../../c/modules/modules.h"
|
---|
13 | #include "../../c/Container/Container.h"
|
---|
14 | #include "../../c/shared/shared.h"
|
---|
15 |
|
---|
16 | #undef __FUNCT__
|
---|
17 | #define __FUNCT__ "InterpFromMeshToMesh2d"
|
---|
18 |
|
---|
19 |
|
---|
20 | /* serial input macros: */
|
---|
21 | #define INDEXHANDLE prhs[0]
|
---|
22 | #define XHANDLE prhs[1]
|
---|
23 | #define YHANDLE prhs[2]
|
---|
24 | #define DATAHANDLE prhs[3]
|
---|
25 | #define XINTERPHANDLE prhs[4]
|
---|
26 | #define YINTERPHANDLE prhs[5]
|
---|
27 | #define DEFAULTHANDLE prhs[6]
|
---|
28 | #define FILENAME prhs[7]
|
---|
29 |
|
---|
30 | /* serial output macros: */
|
---|
31 | #define DATAINTERP (mxArray**)&plhs[0]
|
---|
32 |
|
---|
33 | /* serial arg counts: */
|
---|
34 | #undef NLHS
|
---|
35 | #define NLHS 1
|
---|
36 |
|
---|
37 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.