Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/gameengine/Physics/Bullet/CcdPhysicsController.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/gameengine/Physics/Bullet/CcdPhysicsController.cpp b/source/gameengine/Physics/Bullet/CcdPhysicsController.cpp
index 9a85471fb9a..6c1e2998bdb 100644
--- a/source/gameengine/Physics/Bullet/CcdPhysicsController.cpp
+++ b/source/gameengine/Physics/Bullet/CcdPhysicsController.cpp
@@ -863,9 +863,9 @@ void CcdPhysicsController::RelativeRotate(const float rotval[9],bool local)
return;
}
- btMatrix3x3 drotmat( rotval[0],rotval[4],rotval[8],
- rotval[1],rotval[5],rotval[9],
- rotval[2],rotval[6],rotval[10]);
+ btMatrix3x3 drotmat(rotval[0], rotval[3], rotval[6],
+ rotval[1], rotval[4], rotval[7],
+ rotval[2], rotval[5], rotval[8]);
btMatrix3x3 currentOrn;