source: issm/trunk-jpl/src/mex/PointCloudFindNeighbors/PointCloudFindNeighbors.h@ 12013

Last change on this file since 12013 was 12013, checked in by Eric.Larour, 13 years ago

Some debugging of compilation

File size: 766 bytes
Line 
1
2/*
3 PointCloudFindNeighbors.h
4*/
5
6
7#ifndef _POINTCLOUDFINDNEIGHBORS_H
8#define _POINTCLOUDFINDNEIGHBORS_H
9
10/* local prototypes: */
11void PointCloudFindNeighborsUsage(void);
12
13#include "../../c/include/globals.h"
14#include "../../c/modules/modules.h"
15#include "../../c/Container/Container.h"
16#include "../../c/shared/shared.h"
17#include "../../c/issm-binding.h"
18
19#undef __FUNCT__
20#define __FUNCT__ "PointCloudFindNeighbors"
21
22
23#ifndef ALL
24#define ALL 0
25#endif
26
27/* input macros: */
28#define XHANDLE prhs[0]
29#define YHANDLE prhs[1]
30#define MINDISTANCE prhs[2]
31#define MULTITHREAD prhs[3]
32
33/* serial output macros: */
34#define FLAGS (mxArray**)&plhs[0]
35
36/* serial arg counts: */
37#undef NLHS
38#define NLHS 1
39#undef NRHS
40#define NRHS 4
41
42
43#endif /* _POINTCLOUDFINDNEIGHBORS_H */
44
Note: See TracBrowser for help on using the repository browser.