mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-10 15:47:41 +00:00
Start CCollidableAABox, add CPlayerCameraBob
Former-commit-id: 749dec6b1e
This commit is contained in:
15
include/Collision/NormalTable.hpp
Normal file
15
include/Collision/NormalTable.hpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef _NORMALTABLE
|
||||
#define _NORMALTABLE
|
||||
|
||||
#include "Kyoto/Math/CVector3f.hpp"
|
||||
|
||||
static const CVector3f normalTable[6] = {
|
||||
CVector3f(-1.f, 0.f, 0.f),
|
||||
CVector3f(1.f, 0.f, 0.f),
|
||||
CVector3f(0.f, -1.f, 0.f),
|
||||
CVector3f(0.f, 1.f, 0.f),
|
||||
CVector3f(0.f, 0.f, -1.f),
|
||||
CVector3f(0.f, 0.f, 1.f),
|
||||
};
|
||||
|
||||
#endif // _NORMALTABLE
|
||||
Reference in New Issue
Block a user