mirror of
https://github.com/encounter/bfbb.git
synced 2026-07-09 18:19:36 -07:00
18 lines
396 B
C
18 lines
396 B
C
#ifndef RTINTSEC_H
|
|
#define RTINTSEC_H
|
|
|
|
#include "rwcore.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern RwBool RtIntersectionSphereTriangle(RwSphere* sphere, RwV3d* v0, RwV3d* v1, RwV3d* v2,
|
|
RwV3d* normal, RwReal* distance);
|
|
extern RwBool RtIntersectionBBoxTriangle(RwBBox* bbox, RwV3d* v0, RwV3d* v1, RwV3d* v2);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |