blob: 9fa6ea100970e2e8be8c9a9761a1b4c6d6107188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Copyright (c) 2001, Stanford University
* All rights reserved.
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#ifndef CR_HULL_H
#define CR_HULL_H
#include "state/cr_statetypes.h"
#include <iprt/cdefs.h>
#ifdef __cplusplus
extern "C" {
#endif
DECLEXPORT(void) crHullInteriorBox(const double *pnts, int npnts, double *bbox);
#ifdef __cplusplus
}
#endif
#endif /* CR_BBOX_H */
|