~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to source/gameengine/Ketsji/KX_BulletPhysicsController.cpp

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-05-12 20:02:22 UTC
  • mfrom: (14.2.16 sid)
  • Revision ID: package-import@ubuntu.com-20120512200222-lznjs2cxzaq96wua
Tags: 2.63a-1
* New upstream bugfix release
  + debian/patches/: re-worked since source code changed

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
 
122
122
void    KX_BulletPhysicsController::RelativeRotate(const MT_Matrix3x3& drot,bool local)
123
123
{
124
 
        float   rotval[12];
125
 
        drot.getValue(rotval);
 
124
        float   rotval[9];
 
125
        drot.getValue3x3(rotval);
126
126
        CcdPhysicsController::RelativeRotate(rotval,local);
127
127
}
128
128