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

Last change on this file since 10937 was 7641, checked in by Eric.Larour, 14 years ago

New module

File size: 695 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/modules/modules.h"
14#include "../../c/Container/Container.h"
15#include "../../c/shared/shared.h"
16
17#undef __FUNCT__
18#define __FUNCT__ "PointCloudFindNeighbors"
19
20
21#ifndef ALL
22#define ALL 0
23#endif
24
25/* input macros: */
26#define XHANDLE prhs[0]
27#define YHANDLE prhs[1]
28#define MINDISTANCE prhs[2]
29#define MULTITHREAD prhs[3]
30
31/* serial output macros: */
32#define FLAGS (mxArray**)&plhs[0]
33
34/* serial arg counts: */
35#undef NLHS
36#define NLHS 1
37#undef NRHS
38#define NRHS 4
39
40
41#endif /* _POINTCLOUDFINDNEIGHBORS_H */
42
Note: See TracBrowser for help on using the repository browser.