diff options
author | aap <aap@papnet.eu> | 2019-05-18 12:39:39 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-05-18 12:39:39 +0200 |
commit | 9e496100b7baff8834658f577d3138d9f8fc3765 (patch) | |
tree | a725be9b0dba9a4ce76c19a6629ef62c36e46814 /rwsdk/include/d3d8/rtray.h | |
parent | fixed pathfind (diff) | |
download | re3-9e496100b7baff8834658f577d3138d9f8fc3765.tar re3-9e496100b7baff8834658f577d3138d9f8fc3765.tar.gz re3-9e496100b7baff8834658f577d3138d9f8fc3765.tar.bz2 re3-9e496100b7baff8834658f577d3138d9f8fc3765.tar.lz re3-9e496100b7baff8834658f577d3138d9f8fc3765.tar.xz re3-9e496100b7baff8834658f577d3138d9f8fc3765.tar.zst re3-9e496100b7baff8834658f577d3138d9f8fc3765.zip |
Diffstat (limited to 'rwsdk/include/d3d8/rtray.h')
-rw-r--r-- | rwsdk/include/d3d8/rtray.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/rwsdk/include/d3d8/rtray.h b/rwsdk/include/d3d8/rtray.h new file mode 100644 index 00000000..4bf0a343 --- /dev/null +++ b/rwsdk/include/d3d8/rtray.h @@ -0,0 +1,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 */ |