template<typename T>
sead::Matrix44CalcCommon class

Public types

using Base = typename Policies<T>::Mtx44Base
using Mtx33 = typename Policies<T>::Mtx33Base
using Mtx34 = typename Policies<T>::Mtx34Base
using Quat = typename Policies<T>::QuatBase
using Vec3 = typename Policies<T>::Vec3Base
using Vec4 = typename Policies<T>::Vec4Base

Public static functions

static void makeIdentity(Base& o)
static void makeZero(Base& o)
static void copy(Base& o, const Base& n)
static void copy(Base& o, const Mtx33& n, const Vec3& t, const Vec4& v)
static void copy(Base& o, const Mtx34& n, const Vec4& v)
static void inverse(Base& o, const Base& n)
static void inverseTranspose(Base& o, const Base& n)
static void multiply(Base& o, const Base& a, const Base& b)
static void multiply(Base& o, const Mtx34& a, const Base& b)
static void multiply(Base& o, const Base& a, const Mtx34& b)
static void transpose(Base& o)
static void transposeTo(Base& o, const Base& n)
static void makeQ(Base& o, const Quat& q)
static void makeR(Base& o, const Vec3& r)
static void makeRIdx(Base& o, u32 xr, u32 yr, u32 zr)
static void makeRzxyIdx(Base& o, u32 xr, u32 yr, u32 zr)
static void toQuat(Quat& q, const Base& n)
static void getCol(Vec4& v, const Base& n, s32 axis)
static void getRow(Vec4& v, const Base& n, s32 row)
static void scaleAllElements(Base& n, T s)
static void scaleBases(Base& n, T sx, T sy, T sz, T sw)
static void setCol(Base& n, s32 axis, const Vec4& v)
static void setRow(Base& n, const Vec4& v, s32 row)