blender/source/gameengine/Physics
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
..
BlOde Had to make the patch for casting a little more complicated. 2002-12-03 15:52:47 +00:00
common Last of the config.h mods... 2002-11-25 15:29:57 +00:00
Dummy Last of the config.h mods... 2002-11-25 15:29:57 +00:00
Sumo Last of the config.h mods... 2002-11-25 15:29:57 +00:00
Makefile Brought back the sumo physics controllers and undid game engine make file 2002-11-05 20:20:50 +00:00