Changed Quaternion to use floats

This commit is contained in:
hondacrx
2017-07-02 00:48:05 -04:00
parent ccee7604da
commit 8b78fc7361
5 changed files with 79 additions and 107 deletions
+2 -2
View File
@@ -796,11 +796,11 @@ namespace Framework.GameMath
{
get
{
return this[(row - 1) * 3 + (column - 1)];
return this[row * 3 + column];
}
set
{
this[(row - 1) * 3 + (column - 1)] = value;
this[row * 3 + column] = value;
}
}
#endregion