mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-07 07:53:28 +00:00
Retro seemingly avoided using the Dolphin typedefs in most places, opting to use int/uint instead. This likely means they didn't use u8/s8/u16/s16/etc either. Former-commit-id: 133326ae406a0ebc76f56f8bcb489fda280be2be
17 lines
382 B
C++
17 lines
382 B
C++
#ifndef _CUNITVECTOR3F
|
|
#define _CUNITVECTOR3F
|
|
|
|
#include "types.h"
|
|
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
|
|
|
class CUnitVector3f : public CVector3f {
|
|
public:
|
|
CUnitVector3f(float x, float y, float z) : CVector3f(x, y, z) { Normalize(); }
|
|
CUnitVector3f(const CVector3f& vec); // : CVector3f(vec) { Normalize(); }
|
|
// TODO
|
|
};
|
|
CHECK_SIZEOF(CUnitVector3f, 0xc)
|
|
|
|
#endif // _CUNITVECTOR3F
|