mirror of
https://github.com/zeldaret/botw
synced 2026-08-21 14:16:48 -04:00
git subrepo pull (merge) lib/sead
subrepo: subdir: "lib/sead" merged: "14326b350" upstream: origin: "https://github.com/open-ead/sead" branch: "master" commit: "14326b350" git-subrepo: version: "0.4.3" origin: "ssh://git@github.com/ingydotnet/git-subrepo" commit: "2f68596"
This commit is contained in:
@@ -692,20 +692,7 @@ void Matrix33CalcCommon<T>::toQuat(Quat& q, const Base& n)
|
||||
template <typename T>
|
||||
void Matrix34CalcCommon<T>::makeIdentity(Base& o)
|
||||
{
|
||||
o.m[0][0] = 1;
|
||||
o.m[0][1] = 0;
|
||||
o.m[0][2] = 0;
|
||||
o.m[0][3] = 0;
|
||||
|
||||
o.m[1][0] = 0;
|
||||
o.m[1][1] = 1;
|
||||
o.m[1][2] = 0;
|
||||
o.m[1][3] = 0;
|
||||
|
||||
o.m[2][0] = 0;
|
||||
o.m[2][1] = 0;
|
||||
o.m[2][2] = 1;
|
||||
o.m[2][3] = 0;
|
||||
Matrix34CalcCommon<T>::copy(o, Base{{{{1, 0, 0, 0}, {0, 1, 0, 0}, {0, 0, 1, 0}}}});
|
||||
}
|
||||
|
||||
#ifdef cafe
|
||||
|
||||
Reference in New Issue
Block a user