mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-17 10:54:09 +00:00
Merge branch 'master' into miami
# Conflicts: # premake5.lua # sdk/rwsdk/include/d3d8/baaplylt.c # sdk/rwsdk/include/d3d8/rpstereo.h # sdk/rwsdk/include/d3d8/rpstereo.rpe # sdk/rwsdk/include/d3d8/rtintel.h # sdk/rwsdk/include/d3d8/rtintel.rpe # src/audio/oal/stream.cpp
This commit is contained in:
commit
3e24ae8812
325 changed files with 1699 additions and 16 deletions
63
sdk/rwsdk/include/d3d8/rtray.h
Normal file
63
sdk/rwsdk/include/d3d8/rtray.h
Normal file
|
@ -0,0 +1,63 @@
|
|||
/***************************************************************************
|
||||
* *
|
||||
* Module : rtray.h *
|
||||
* *
|
||||
* Purpose : Picking with rays *
|
||||
* *
|
||||
**************************************************************************/
|
||||
|
||||
#ifndef RTRAY_H
|
||||
#define RTRAY_H
|
||||
|
||||
/**
|
||||
* \defgroup rtray RtRay
|
||||
* \ingroup mathtools
|
||||
*
|
||||
* 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 RwBool RtLineSphereIntersectionTest(RwLine *line,
|
||||
RwSphere *sphere,
|
||||
RwReal *centerDist);
|
||||
|
||||
/* Line clipping */
|
||||
extern RwLine *RtLineClipPlane(RwLine *line, RwPlane *plane);
|
||||
extern RwLine *RtLineClipBBox(RwLine *line, RwBBox *box);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
/* RWPUBLICEND */
|
||||
|
||||
#endif /* RTRAY_H */
|
Loading…
Add table
Add a link
Reference in a new issue