summaryrefslogtreecommitdiffstats
path: root/rwsdk/include/d3d8/rtray.h
blob: 4bf0a343c0aff06a6dd442d96a11fb3bcc5eacbe (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
60
61
/***************************************************************************
 *                                                                         *
 * Module  : rtray.h                                                       *
 *                                                                         *
 * Purpose : Picking with rays                                             *
 *                                                                         *
 **************************************************************************/

#ifndef RTRAY_H
#define RTRAY_H

/**
 * \defgroup rtray RtRay
 * \ingroup rttool
 *
 * Line Toolkit for RenderWare. 
 */

/****************************************************************************
 Includes
 */

#include "rwcore.h"
#include "rtray.rpe"    /* automatically generated header file */

/****************************************************************************
 Defines
 */


 /****************************************************************************
 Global Types
 */


/* RWPUBLIC */
/****************************************************************************
 Function prototypes
 */

#ifdef    __cplusplus
extern "C"
{
#endif                          /* __cplusplus */

/* Line intersections */
extern RwReal RtLineTriangleIntersectionTest(RwLine *line, RwV3d *normal,
                                             RwV3d *v0, RwV3d *v1, RwV3d *v2);
extern RwReal RtLineSphereIntersectionTest(RwLine *line, RwSphere *sphere);

/* Line clipping */
extern RwLine *RtLineClipPlane(RwLine *line, RwPlane *plane);
extern RwLine *RtLineClipBBox(RwLine *line, RwBBox *box);

#ifdef    __cplusplus
}
#endif                          /* __cplusplus */

/* RWPUBLICEND */

#endif /* RTRAY_H */