Changeset 11883
- Timestamp:
- 04/03/12 16:23:11 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/mex/TriMesh/TriMesh.h ΒΆ
r11881 r11883 1 /* 2 TriMesh.h 3 */ 1 /*!\file: TriMesh.h 2 * \brief header prototype 3 */ 4 4 5 #ifndef _TRIMESH_H 6 #define _TRIMESH_H 5 #ifndef _TRIMESH_H_ 6 #define _TRIMESH_H_ 7 7 8 /* local prototypes: */ 9 void TriMeshUsage(void); 8 #include "mex.h" 9 #include "triangle.h" 10 #include "string.h" 10 11 11 12 #include "../../c/modules/modules.h" 12 13 #include "../../c/Container/Container.h" 13 14 #include "../../c/shared/shared.h" 14 #include "../../c/EnumDefinitions/EnumDefinitions.h"15 15 16 void TriMeshUsage(void); 16 17 17 18 #undef __FUNCT__ 18 #define __FUNCT__ 19 #define __FUNCT__ "TriMesh" 19 20 20 /* serial input macros: */ 21 #define DOMAINOUTLINE (mxArray *)prhs[0] 22 #define AREA (mxArray *)prhs[1] 23 #define ORDER (mxArray *)prhs[2] 24 25 /* serial output macros: */ 26 #define INDEX (mxArray**)&plhs[0] 27 #define X (mxArray**)&plhs[1] 28 #define Y (mxArray**)&plhs[2] 29 #define SEGMENTS (mxArray**)&plhs[3] 30 #define SEGMENTMARKERLIST (mxArray**)&plhs[4] 31 32 /* serial arg counts: */ 33 #undef NLHS 34 #define NLHS 5 35 #undef NRHS 36 #define NRHS 3 37 38 #endif /* _TRIMESH_H */ 21 #endif
Note:
See TracChangeset
for help on using the changeset viewer.