mirror of
https://github.com/PrimeDecomp/prime.git
synced 2026-03-31 14:22:54 -07:00
1e03f02289
Former-commit-id: 749dec6b1e
16 lines
320 B
C++
16 lines
320 B
C++
#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
|