blob: 1048a85161f9f12e68b84118bc4b3dfa95c1bdaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* Copyright (c) 2001, Stanford University
* All rights reserved.
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#ifndef CR_WARP_H
#define CR_WARP_H
#include <iprt/cdefs.h>
#ifdef __cplusplus
extern "C" {
#endif
DECLEXPORT(void) crWarpPoint(const float *align, const float *point, float *result);
#ifdef __cplusplus
}
#endif
#endif /* CR_BBOX_H */
|