bullet3/Extras/COLLADA_DOM
erwin.coumans 700db838b1 Add 1D and 2D support for Bullet: using rigidbody->angularFactor(const btVector3& factor) and body->setLinearFactor(const btVector3& linearFactor);
For example, to only allow linear motion in the X-Z plane, and only rotation around Y axis use:
	body->setLinearFactor(btVector3(1,0,1));
	body->setAngularFactor(btVector3(0,1,0));
Fix build issues with CodeBlocks, when generating projectfiles using CMake 2.6:
${OPENGL_glU_LIBRARY} should be ${OPENGL_glu_LIBRARY}
Fix build issue with CodeBlocks, comment out xmlfree in Extras/COLLADA_DOM/src/modules/LIBXMLPlugin/daeLIBXMLPlugin.cpp (will leak memory)
2009-03-08 04:14:17 +00:00
..
include Fix compilation for MSVC 6.0 for Bullet and COLLADA DOM. 2008-11-12 18:37:05 +00:00
src Add 1D and 2D support for Bullet: using rigidbody->angularFactor(const btVector3& factor) and body->setLinearFactor(const btVector3& linearFactor); 2009-03-08 04:14:17 +00:00
CMakeLists.txt updated CMake support: remove Lib prefix, to facilitate Apple Framework support, add App prefix for demos 2008-11-06 06:54:35 +00:00
Jamfile updated Jamfiles so only the appropriate Bullet libraries gets installed, not the helper/internal ones. 2006-12-27 01:34:54 +00:00
readme.txt COLLADA 1.4 DOM support preparation (Visual Studio 2005 files + readme.txt) 2006-06-05 23:27:37 +00:00
scea-shared-source-lic1.0.txt added limited support for COLLADA_DOM. Will need to add jam/msvcgen build support. 2006-06-18 05:31:52 +00:00
scea-shared-source-license1.0.pdf added limited support for COLLADA_DOM. Will need to add jam/msvcgen build support. 2006-06-18 05:31:52 +00:00

Download COLLADA 1.4 DOM COLLADA DOM Patch3 or later and unzip here.
http://sourceforge.net/projects/collada-dom
Visual Studio 2005 projectfiles are provided.