diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-08-02 18:36:50 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-08-02 18:36:50 +0200 |
commit | a786dd45a4ebc6b91936b5e46d0ef0a9befc05af (patch) | |
tree | ced50966eaaf373f8733547046baf2bdc558662d /rwsdk/include/d3d8/rtray.h | |
parent | Merge branch 'master' of https://github.com/GTAmodding/re3 into erorcun (diff) | |
download | re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.gz re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.bz2 re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.lz re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.xz re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.zst re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.zip |
Diffstat (limited to 'rwsdk/include/d3d8/rtray.h')
-rw-r--r-- | rwsdk/include/d3d8/rtray.h | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/rwsdk/include/d3d8/rtray.h b/rwsdk/include/d3d8/rtray.h deleted file mode 100644 index 4bf0a343..00000000 --- a/rwsdk/include/d3d8/rtray.h +++ /dev/null @@ -1,61 +0,0 @@ -/*************************************************************************** - * * - * 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 */ |