Changeset 11883


Ignore:
Timestamp:
04/03/12 16:23:11 (13 years ago)
Author:
Mathieu Morlighem
Message:

Back to normal for now

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 */
    44
    5 #ifndef _TRIMESH_H
    6 #define _TRIMESH_H
     5#ifndef _TRIMESH_H_
     6#define _TRIMESH_H_
    77
    8 /* local prototypes: */
    9 void TriMeshUsage(void);
     8#include "mex.h"
     9#include "triangle.h"
     10#include "string.h"
    1011
    1112#include "../../c/modules/modules.h"
    1213#include "../../c/Container/Container.h"
    1314#include "../../c/shared/shared.h"
    14 #include "../../c/EnumDefinitions/EnumDefinitions.h"
    1515
     16void TriMeshUsage(void);
    1617
    1718#undef __FUNCT__
    18 #define __FUNCT__  "TriMesh"
     19#define __FUNCT__ "TriMesh"
    1920
    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.