Forgot to change updater to look for newest full DBs

This commit is contained in:
hondacrx
2022-08-09 11:03:35 -04:00
parent dacf9b1992
commit 02452aaa3d
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -283,7 +283,7 @@ namespace System
else
{
// WARNING. Not unique. ZA - XA = -atan2(r01,r02)
z = -(float)MathF.Atan2(matrix.M12, matrix.M13);
z = -MathF.Atan2(matrix.M12, matrix.M13);
y = MathFunctions.PiOver2;
x = 0.0f;
}
@@ -291,7 +291,7 @@ namespace System
else
{
// WARNING. Not unique. ZA + XA = atan2(-r01,-r02)
z = (float)MathF.Atan2(-matrix.M12, -matrix.M13);
z = MathF.Atan2(-matrix.M12, -matrix.M13);
y = -MathFunctions.PiOver2;
x = 0.0f;
}