Skip to content

Commit

Permalink
Merge pull request assimp#3826 from krishty/fix-3ds-matrix
Browse files Browse the repository at this point in the history
reverted regression in 3DS transformation (issue assimp#3802)
  • Loading branch information
kimkulling authored May 1, 2021
2 parents f538b96 + 78132d6 commit b516d94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/AssetLib/3DS/3DSLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -981,9 +981,9 @@ void Discreet3DSImporter::ParseMeshChunk() {
mMesh.mMat.a3 = stream->GetF4();
mMesh.mMat.b3 = stream->GetF4();
mMesh.mMat.c3 = stream->GetF4();
mMesh.mMat.d1 = stream->GetF4();
mMesh.mMat.d2 = stream->GetF4();
mMesh.mMat.d3 = stream->GetF4();
mMesh.mMat.a4 = stream->GetF4();
mMesh.mMat.b4 = stream->GetF4();
mMesh.mMat.c4 = stream->GetF4();
} break;

case Discreet3DS::CHUNK_MAPLIST: {
Expand Down

0 comments on commit b516d94

Please sign in to comment.