mirror of
https://github.com/zeldaret/ss
synced 2026-07-05 21:09:07 -04:00
fefe3af58f
* d_a_obj_flying_clawshot_target OK * fix tubo symbol
23 lines
495 B
C++
23 lines
495 B
C++
#ifndef M_QUAT_H
|
|
#define M_QUAT_H
|
|
|
|
#include "egg/math/eggQuat.h"
|
|
#include "m/m_vec.h"
|
|
|
|
class mQuat_c : public EGG::Quatf {
|
|
public:
|
|
mQuat_c() {}
|
|
mQuat_c(f32 x, f32 y, f32 z, f32 w) : EGG::Quatf(w, x, y, z) {}
|
|
mQuat_c &operator=(const EGG::Quatf &rhs) {
|
|
v = rhs.v;
|
|
w = rhs.w;
|
|
return *this;
|
|
}
|
|
|
|
bool Set(const mVec3_c &, const mVec3_c &);
|
|
void fn_802F2780(const mQuat_c &other);
|
|
bool fn_802F2450(const mVec3_c &, const mVec3_c &, f32);
|
|
};
|
|
|
|
#endif
|