- fbx: further work and bugfixes on deformer conversion.

This commit is contained in:
Alexander Gessler
2012-07-26 23:45:07 +02:00
parent d194c83ed8
commit f230ac2f60
4 changed files with 14 additions and 4 deletions

View File

@@ -388,7 +388,7 @@ aiMatrix4x4 ReadMatrix(const Element& element)
aiMatrix4x4 result;
// XXX transposed or not, this is the question :-)
result.a1 = values[0];
result.a2 = values[1];
result.a3 = values[2];
@@ -409,6 +409,7 @@ aiMatrix4x4 ReadMatrix(const Element& element)
result.d3 = values[14];
result.d4 = values[15];
result.Transpose();
return result;
}