prime/include/Kyoto/Math/CUnitVector3f.hpp
Luke Street 1f56cefe8c Halfway match CAABox; continue CBallCamera
Former-commit-id: 602109d8f0a6ca9abd7ccdacab851e6c2a777fb8
2022-09-29 19:55:43 -04:00

20 lines
329 B
C++

#ifndef _CUNITVECTOR3F_HPP
#define _CUNITVECTOR3F_HPP
#include "types.h"
#include "Kyoto/Math/CVector3f.hpp"
class CUnitVector3f : public CVector3f {
public:
enum ENormalize {
// TODO
};
CUnitVector3f(f32 x, f32 y, f32 z);
CUnitVector3f(const CVector3f& vec);
// TODO
};
CHECK_SIZEOF(CUnitVector3f, 0xc)
#endif