| 4 |
|
* |
| 5 |
|
* Include after fvect.h |
| 6 |
|
*/ |
| 7 |
+ |
#ifndef _RAD_PLOCATE_H_ |
| 8 |
+ |
#define _RAD_PLOCATE_H_ |
| 9 |
+ |
#ifdef __cplusplus |
| 10 |
+ |
extern "C" { |
| 11 |
+ |
#endif |
| 12 |
|
|
| 13 |
|
#include "copyright.h" |
| 14 |
|
|
| 23 |
|
#define BELOW 025 /* below bits */ |
| 24 |
|
#define ABOVE 052 /* above bits */ |
| 25 |
|
|
| 21 |
– |
#ifdef NOPROTO |
| 26 |
|
|
| 23 |
– |
extern int clip(); |
| 24 |
– |
|
| 25 |
– |
extern int plocate(); |
| 26 |
– |
|
| 27 |
– |
#else |
| 28 |
– |
|
| 27 |
|
extern int clip(FLOAT *ep1, FLOAT *ep2, FVECT min, FVECT max); |
| 30 |
– |
|
| 28 |
|
extern int plocate(FVECT p, FVECT min, FVECT max); |
| 29 |
|
|
| 30 |
+ |
|
| 31 |
+ |
#ifdef __cplusplus |
| 32 |
+ |
} |
| 33 |
|
#endif |
| 34 |
+ |
#endif /* _RAD_PLOCATE_H_ */ |
| 35 |
+ |
|