Files
botw/lib/sead/include/math/seadQuat.h
T
Léo Lam 18c60323a9 Switch to subrepos
git subrepo clone https://github.com/open-ead/sead lib/sead

subrepo:
  subdir:   "lib/sead"
  merged:   "1b66e825d"
upstream:
  origin:   "https://github.com/open-ead/sead"
  branch:   "master"
  commit:   "1b66e825d"
git-subrepo:
  version:  "0.4.3"
  origin:   "https://github.com/ingydotnet/git-subrepo"
  commit:   "2f68596"

git subrepo clone (merge) https://github.com/open-ead/nnheaders lib/NintendoSDK

subrepo:
  subdir:   "lib/NintendoSDK"
  merged:   "9ee21399f"
upstream:
  origin:   "https://github.com/open-ead/nnheaders"
  branch:   "master"
  commit:   "9ee21399f"
git-subrepo:
  version:  "0.4.3"
  origin:   "ssh://git@github.com/ingydotnet/git-subrepo"
  commit:   "2f68596"

git subrepo clone https://github.com/open-ead/agl lib/agl

subrepo:
  subdir:   "lib/agl"
  merged:   "7c063271b"
upstream:
  origin:   "https://github.com/open-ead/agl"
  branch:   "master"
  commit:   "7c063271b"
git-subrepo:
  version:  "0.4.3"
  origin:   "ssh://git@github.com/ingydotnet/git-subrepo"
  commit:   "2f68596"

git subrepo clone https://github.com/open-ead/EventFlow lib/EventFlow

subrepo:
  subdir:   "lib/EventFlow"
  merged:   "c35d21b34"
upstream:
  origin:   "https://github.com/open-ead/EventFlow"
  branch:   "master"
  commit:   "c35d21b34"
git-subrepo:
  version:  "0.4.3"
  origin:   "ssh://git@github.com/ingydotnet/git-subrepo"
  commit:   "2f68596"
2022-03-21 21:31:42 +01:00

83 lines
1.5 KiB
C++

#pragma once
#include <basis/seadTypes.h>
#include <cmath>
#include <limits>
#include <math/seadMathPolicies.h>
#include <math/seadVector.h>
namespace sead
{
template <typename T>
struct Quat : public Policies<T>::QuatBase
{
private:
typedef Quat<T> Self;
typedef Vector3<T> Vec3;
public:
Quat() {}
Quat(const Quat& other) = default;
Quat(T w, T x, T y, T z);
Quat& operator=(const Quat& other)
{
this->w = other.w;
this->x = other.x;
this->y = other.y;
this->z = other.z;
return *this;
}
friend Quat operator*(const Quat& a, T t)
{
auto result = a;
result *= t;
return result;
}
friend Quat operator*(const Quat& a, const Quat& b)
{
auto result = a;
result *= b;
return result;
}
friend Quat operator*(T t, const Quat& a) { return operator*(a, t); }
Quat& operator*=(const Quat& t);
Quat& operator*=(T t)
{
this->w *= t;
this->x *= t;
this->y *= t;
this->z *= t;
return *this;
}
T length() const;
T normalize();
T dot(const Self& q);
void inverse(Self* q);
void makeUnit();
bool makeVectorRotation(const Vec3& from, const Vec3& to);
void set(T w, T x, T y, T z);
void setRPY(T roll, T pitch, T yaw);
void calcRPY(Vec3& rpy) const;
static const Quat unit;
};
using Quatf = Quat<f32>;
template <>
const Quatf Quatf::unit;
} // namespace sead
#define SEAD_MATH_QUAT_H_
#include <math/seadQuat.hpp>
#undef SEAD_MATH_QUAT_H_