prime/include/Kyoto/Math/CUnitVector3f.hpp
Luke Street 682ce50113 Fix CUnitVector3f non-match
Former-commit-id: 60c82b0a89a6ac9fc750c11ccd5098d38226beef
2022-10-03 00:56:11 -04:00

17 lines
365 B
C++

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