Merge branch 'master' into kimkulling/refactoring_geoutils

This commit is contained in:
Kim Kulling
2023-05-04 21:10:00 +02:00
committed by GitHub
155 changed files with 20577 additions and 369 deletions

View File

@@ -588,7 +588,7 @@ void PretransformVertices::Execute(aiScene *pScene) {
// multiply all properties of the camera with the absolute
// transformation of the corresponding node
cam->mPosition = nd->mTransformation * cam->mPosition;
cam->mLookAt = aiMatrix3x3(nd->mTransformation) * cam->mLookAt;
cam->mLookAt = nd->mTransformation * cam->mLookAt;
cam->mUp = aiMatrix3x3(nd->mTransformation) * cam->mUp;
}