This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/gameengine
Kent Mein 50ec450e64 Had to make the patch for casting a little more complicated.
m_MotionState->getWorldOrientation((float)worldquat[1],
        (float)worldquat[2],(float)worldquat[3],(float)worldquat[0]);

Is now:

#ifdef dDOUBLE
      m_MotionState->getWorldOrientation((float)worldquat[1],
        (float)worldquat[2],(float)worldquat[3],(float)worldquat[0]);
#else
      m_MotionState->getWorldOrientation(worldquat[1],
        worldquat[2],worldquat[3],worldquat[0]);
#endif


Kent
--
mein@cs.umn.edu
2002-12-03 15:52:47 +00:00
..
2002-11-25 15:29:57 +00:00
2002-11-25 15:29:57 +00:00
2002-11-25 15:29:57 +00:00
2002-11-25 15:29:57 +00:00
2002-11-25 15:29:57 +00:00
2002-11-25 15:29:57 +00:00
2002-11-25 15:29:57 +00:00
2002-11-25 15:29:57 +00:00
2002-10-12 11:37:38 +00:00