diff options
| author | jussi | 2025-06-02 20:49:51 +0300 |
|---|---|---|
| committer | jussi | 2025-06-02 20:49:51 +0300 |
| commit | 5b8af05e96b33f2d032cc31a329b89e1231d5502 (patch) | |
| tree | 9ea0f70bae6c77cfc0edeb3f4b0b11fa9fb6be94 /include/rmath.h | |
| parent | e26bb8603c5a4053f2790fc7d6ce02b3179f5289 (diff) | |
| download | reilua-enhanced-5b8af05e96b33f2d032cc31a329b89e1231d5502.tar.gz reilua-enhanced-5b8af05e96b33f2d032cc31a329b89e1231d5502.tar.bz2 reilua-enhanced-5b8af05e96b33f2d032cc31a329b89e1231d5502.zip | |
Frustum math from raylib extras.
Diffstat (limited to 'include/rmath.h')
| -rw-r--r-- | include/rmath.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/rmath.h b/include/rmath.h index 20c4049..7b96f14 100644 --- a/include/rmath.h +++ b/include/rmath.h @@ -152,3 +152,8 @@ int lmathQuaternionFromEuler( lua_State* L ); int lmathQuaternionToEuler( lua_State* L ); int lmathQuaternionTransform( lua_State* L ); int lmathQuaternionEquals( lua_State* L ); +/* Frustum */ +int lmathExtractFrustum( lua_State* L ); +int lmathPointInFrustum( lua_State* L ); +int lmathSphereInFrustum( lua_State* L ); +int lmathAABBInFrustum( lua_State* L ); |
