blob: 5ea780587adec92987e723820bee843ec606ef3d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/***************************************************************************
* *
* Module : rtpick.h *
* *
* Purpose : Utils for picking atomics. *
* *
**************************************************************************/
#ifndef RTPICK_H
#define RTPICK_H
/**
* \defgroup rtpick RtPick
* \ingroup rttool
*
* Picking Toolkit for RenderWare.
*/
/****************************************************************************
Includes
*/
#include "rwcore.h"
#include "rtpick.rpe" /* automatically generated header file */
/****************************************************************************
Defines
*/
/****************************************************************************
Global Types
*/
/****************************************************************************
Function prototypes
*/
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
/* Camera pixel ray */
extern const RwCamera *RwCameraCalcPixelRay(const RwCamera *camera,
RwLine *line,
const RwV2d *pixel);
/* Picking atomics */
extern RpAtomic *RpWorldPickAtomicOnLine(RpWorld *world,
const RwLine *line);
extern RpAtomic *RwCameraPickAtomicOnPixel(const RwCamera *camera,
const RwV2d *pixel);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* RTPICK_H */
|