├── AUTHORS ├── BspDemo.bsp ├── BulletLicense.txt ├── Bullet_User_Manual.pdf ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── Demos ├── AllBulletDemos │ ├── CMakeLists.txt │ ├── DemoEntries.cpp │ ├── DemoEntries.h │ ├── Main.cpp │ ├── Makefile.am │ └── Makefile.in ├── BasicDemo │ ├── BasicDemo.cpp │ ├── BasicDemo.h │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── Win32BasicDemo.cpp │ └── main.cpp ├── Benchmarks │ ├── BenchmarkDemo.cpp │ ├── BenchmarkDemo.h │ ├── CMakeLists.txt │ ├── Taru.mdl │ ├── Win32BenchmarkDemo.cpp │ ├── landscape.mdl │ ├── main.cpp │ └── premake4.lua ├── Box2dDemo │ ├── Box2dDemo.cpp │ ├── Box2dDemo.h │ ├── CMakeLists.txt │ ├── Win32Box2dDemo.cpp │ └── main.cpp ├── BspDemo │ ├── BspConverter.cpp │ ├── BspConverter.h │ ├── BspDemo.cpp │ ├── BspDemo.h │ ├── BspLoader.cpp │ ├── BspLoader.h │ ├── CMakeLists.txt │ └── main.cpp ├── BulletDinoDemo │ ├── BulletDino.c │ └── CMakeLists.txt ├── BulletXmlImportDemo │ ├── BulletXmlImportDemo.cpp │ ├── BulletXmlImportDemo.h │ ├── CMakeLists.txt │ ├── Win32BulletXmlImportDemo.cpp │ ├── bullet_basic.xml │ ├── bulletser.xml │ └── main.cpp ├── CMakeLists.txt ├── CcdPhysicsDemo │ ├── CMakeLists.txt │ ├── CcdPhysicsDemo.cpp │ ├── CcdPhysicsDemo.h │ ├── Makefile.am │ ├── Makefile.in │ └── main.cpp ├── CellSpuDemo │ ├── BasicDemo2.cpp │ └── BasicDemo2.h ├── CharacterDemo │ ├── CMakeLists.txt │ ├── CharacterDemo.cpp │ ├── CharacterDemo.h │ ├── DynamicCharacterController.cpp │ ├── DynamicCharacterController.h │ └── main.cpp ├── CollisionDemo │ ├── CMakeLists.txt │ ├── CollisionDemo.cpp │ └── CollisionDemo.h ├── CollisionInterfaceDemo │ ├── CMakeLists.txt │ ├── CollisionInterfaceDemo.cpp │ ├── CollisionInterfaceDemo.h │ ├── Win32CollisionInterfaceDemo.cpp │ └── main.cpp ├── ConcaveConvexcastDemo │ ├── CMakeLists.txt │ ├── ConcaveConvexcastDemo.cpp │ ├── ConcaveConvexcastDemo.h │ └── main.cpp ├── ConcaveDemo │ ├── CMakeLists.txt │ ├── ConcaveDemo.h │ ├── ConcavePhysicsDemo.cpp │ ├── Jamfile │ ├── Win32ConcaveDemo.cpp │ └── main.cpp ├── ConcaveRaycastDemo │ ├── CMakeLists.txt │ ├── ConcaveRaycastDemo.cpp │ ├── ConcaveRaycastDemo.h │ └── main.cpp ├── ConstraintDemo │ ├── CMakeLists.txt │ ├── ConstraintDemo.cpp │ ├── ConstraintDemo.h │ ├── Win32ConstraintDemo.cpp │ └── main.cpp ├── ContinuousConvexCollision │ ├── CMakeLists.txt │ ├── ContinuousConvexCollision.h │ └── ContinuousConvexCollisionDemo.cpp ├── ConvexDecompositionDemo │ ├── CMakeLists.txt │ ├── ConvexDecompositionDemo.cpp │ ├── ConvexDecompositionDemo.h │ ├── Win32ConvexDecompositionDemo.cpp │ ├── main.cpp │ └── testFile32Single.bullet ├── ConvexHullDistance │ ├── CMakeLists.txt │ └── ConvexHullDistanceDemo.cpp ├── DX11ClothDemo │ ├── CMakeLists.txt │ ├── DXUT │ │ ├── Core │ │ │ ├── DXUT.cpp │ │ │ ├── DXUT.h │ │ │ ├── DXUTDevice11.cpp │ │ │ ├── DXUTDevice11.h │ │ │ ├── DXUTDevice9.cpp │ │ │ ├── DXUTDevice9.h │ │ │ ├── DXUTmisc.cpp │ │ │ ├── DXUTmisc.h │ │ │ └── dpiaware.manifest │ │ └── Optional │ │ │ ├── DXUTLockFreePipe.h │ │ │ ├── DXUTShapes.cpp │ │ │ ├── DXUTShapes.h │ │ │ ├── DXUTcamera.cpp │ │ │ ├── DXUTcamera.h │ │ │ ├── DXUTgui.cpp │ │ │ ├── DXUTgui.h │ │ │ ├── DXUTguiIME.cpp │ │ │ ├── DXUTguiIME.h │ │ │ ├── DXUTres.cpp │ │ │ ├── DXUTres.h │ │ │ ├── DXUTsettingsdlg.cpp │ │ │ ├── DXUTsettingsdlg.h │ │ │ ├── ImeUi.cpp │ │ │ ├── ImeUi.h │ │ │ ├── SDKmesh.cpp │ │ │ ├── SDKmesh.h │ │ │ ├── SDKmisc.cpp │ │ │ ├── SDKmisc.h │ │ │ ├── SDKsound.cpp │ │ │ ├── SDKsound.h │ │ │ ├── SDKwavefile.cpp │ │ │ ├── SDKwavefile.h │ │ │ └── directx.ico │ ├── Media │ │ ├── Tiny │ │ │ ├── Tiny_skin.dds │ │ │ ├── tiny.sdkmesh │ │ │ └── tiny.x │ │ └── UI │ │ │ ├── DXUTShared.fx │ │ │ ├── Font.dds │ │ │ ├── arrow.x │ │ │ └── dxutcontrols.dds │ ├── amdFlag.bmp │ ├── atiFlag.bmp │ ├── btDirectComputeSupport.h │ ├── cap.h │ ├── capsule.h │ ├── cloth.h │ ├── cloth_renderer.cpp │ ├── cloth_renderer.fx │ ├── cloth_renderer.rc │ ├── cloth_renderer_PS.hlsl │ ├── cloth_renderer_VS.hlsl │ ├── cylinder.h │ ├── premake4.lua │ ├── resource.h │ ├── texture.bmp │ └── texture.png ├── DoublePrecisionDemo │ ├── CMakeLists.txt │ ├── DoublePrecisionDemo.cpp │ └── DoublePrecisionDemo.h ├── DynamicControlDemo │ ├── CMakeLists.txt │ ├── MotorDemo.cpp │ ├── MotorDemo.h │ └── main.cpp ├── EPAPenDepthDemo │ └── PenetrationTestBullet.cpp ├── ForkLiftDemo │ ├── CMakeLists.txt │ ├── ForkLiftDemo.cpp │ ├── ForkLiftDemo.h │ └── main.cpp ├── FractureDemo │ ├── CMakeLists.txt │ ├── FractureDemo.cpp │ ├── FractureDemo.h │ ├── Win32FractureDemo.cpp │ ├── btFractureBody.cpp │ ├── btFractureBody.h │ ├── btFractureDynamicsWorld.cpp │ ├── btFractureDynamicsWorld.h │ └── main.cpp ├── GenericJointDemo │ ├── CMakeLists.txt │ ├── GenericJointDemo.cpp │ ├── GenericJointDemo.h │ ├── Ragdoll.cpp │ ├── Ragdoll.h │ ├── Win32GenericJointDemo.cpp │ └── main.cpp ├── GimpactTestDemo │ ├── BunnyMesh.h │ ├── CMakeLists.txt │ ├── GimpactTestDemo.cpp │ ├── GimpactTestDemo.h │ ├── TorusMesh.h │ ├── Win32GimpactDemo.cpp │ └── main.cpp ├── GjkConvexCastDemo │ ├── CMakeLists.txt │ ├── LinearConvexCastDemo.cpp │ ├── LinearConvexCastDemo.h │ └── main.cpp ├── Gpu2dDemo │ ├── BasicDemo.cpp │ ├── BasicDemo.h │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── btGpuDemo2dCpuFunc.cpp │ ├── btGpuDemo2dSharedCode.h │ ├── btGpuDemo2dSharedDefs.h │ ├── btGpuDemo2dSharedTypes.h │ ├── btGpuDemoDynamicsWorld.cpp │ ├── btGpuDemoDynamicsWorld.h │ ├── btGpuDemoPairCache.cpp │ ├── btGpuDemoPairCache.h │ ├── main.cpp │ ├── oecakeLoader.cpp │ └── oecakeLoader.h ├── Gpu3dDemo │ ├── BasicDemo3d.cpp │ ├── BasicDemo3d.h │ ├── CMakeLists.txt │ ├── btGpuDemo3dCpuFunc.cpp │ ├── btGpuDemo3dSharedCode.h │ ├── btGpuDemo3dSharedDefs.h │ ├── btGpuDemo3dSharedTypes.h │ ├── btGpuDemoDynamicsWorld3D.cpp │ ├── btGpuDemoDynamicsWorld3D.h │ └── main.cpp ├── GyroscopicDemo │ ├── CMakeLists.txt │ ├── GyroscopicDemo.cpp │ ├── GyroscopicDemo.h │ ├── Win32GyroscopicDemo.cpp │ └── main.cpp ├── HelloWorld │ ├── CMakeLists.txt │ ├── HelloWorld.cpp │ └── premake4.lua ├── InternalEdgeDemo │ ├── CMakeLists.txt │ ├── InternalEdgeDemo.cpp │ ├── InternalEdgeDemo.h │ ├── Taru.mdl │ ├── Win32InternalEdgeDemo.cpp │ └── main.cpp ├── Makefile.am ├── Makefile.in ├── MovingConcaveDemo │ ├── CMakeLists.txt │ ├── ConcaveDemo.h │ └── ConcavePhysicsDemo.cpp ├── MultiMaterialDemo │ ├── CMakeLists.txt │ ├── MultiMaterialDemo.cpp │ ├── MultiMaterialDemo.h │ └── main.cpp ├── MultiThreadedDemo │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── MultiThreadedDemo.cpp │ ├── MultiThreadedDemo.h │ └── main.cpp ├── NativeClient │ ├── bin_html │ │ ├── bind.js │ │ ├── dragger.js │ │ ├── httpd.cmd │ │ ├── httpd.py │ │ ├── index.html │ │ ├── trackball.js │ │ ├── tumbler.js │ │ ├── tumbler.nmf │ │ └── vector3.js │ ├── callback.h │ ├── cube.cc │ ├── cube.h │ ├── opengl_context.cc │ ├── opengl_context.h │ ├── opengl_context_ptrs.h │ ├── premake4.lua │ ├── scripting_bridge.cc │ ├── scripting_bridge.h │ ├── shader_util.cc │ ├── shader_util.h │ ├── transforms.cc │ ├── transforms.h │ ├── tumbler.cc │ ├── tumbler.h │ └── tumbler_module.cc ├── OpenCLClothDemo │ ├── AMD │ │ ├── CMakeLists.txt │ │ └── premake4.lua │ ├── Apple │ │ └── CMakeLists.txt │ ├── CLClothDemo.sln │ ├── CLClothDemo.vcproj │ ├── CMakeLists.txt │ ├── Intel │ │ ├── CMakeLists.txt │ │ └── premake4.lua │ ├── MiniCL │ │ └── CMakeLists.txt │ ├── NVidia │ │ ├── CMakeLists.txt │ │ └── premake4.lua │ ├── btOpenCLSupport.h │ ├── cl_cloth_demo.cpp │ ├── cloth.h │ ├── clstuff.cpp │ ├── clstuff.h │ ├── clstuff.hpp │ ├── fragment.glsl │ ├── gl_win.cpp │ ├── gl_win.h │ ├── gl_win.hpp │ ├── shaders.cl │ └── vertex.glsl ├── OpenGL │ ├── CMakeLists.txt │ ├── CommandLineArguments.h │ ├── DebugCastResult.h │ ├── DemoApplication.cpp │ ├── DemoApplication.h │ ├── GLDebugDrawer.cpp │ ├── GLDebugDrawer.h │ ├── GLDebugFont.cpp │ ├── GLDebugFont.h │ ├── GL_DialogDynamicsWorld.cpp │ ├── GL_DialogDynamicsWorld.h │ ├── GL_DialogWindow.cpp │ ├── GL_DialogWindow.h │ ├── GL_ShapeDrawer.cpp │ ├── GL_ShapeDrawer.h │ ├── GL_Simplex1to4.cpp │ ├── GL_Simplex1to4.h │ ├── GlutDemoApplication.cpp │ ├── GlutDemoApplication.h │ ├── GlutStuff.cpp │ ├── GlutStuff.h │ ├── Makefile.am │ ├── Makefile.in │ ├── RenderTexture.cpp │ ├── RenderTexture.h │ ├── Win32AppMain.cpp │ ├── Win32DemoApplication.cpp │ ├── Win32DemoApplication.h │ ├── premake4.lua │ ├── stb_image.cpp │ └── stb_image.h ├── OpenPL_Demo │ ├── CApi.cpp │ └── OpenPL_Demo.c ├── ParticlesOpenCL │ ├── AMD │ │ └── CMakeLists.txt │ ├── Apple │ │ └── CMakeLists.txt │ ├── CMakeLists.txt │ ├── Intel │ │ └── CMakeLists.txt │ ├── MiniCL │ │ ├── CMakeLists.txt │ │ └── MiniCLTaskWrap.cpp │ ├── NVidia │ │ └── CMakeLists.txt │ ├── ParticlesDemo.cpp │ ├── ParticlesDemo.h │ ├── ParticlesOCL.cl │ ├── btParticlesDemoDynamicsWorld.cpp │ ├── btParticlesDynamicsWorld.h │ ├── btParticlesSharedDefs.h │ ├── btParticlesSharedTypes.h │ ├── main.cpp │ ├── shaders.cpp │ └── shaders.h ├── RagdollDemo │ ├── CMakeLists.txt │ ├── RagdollDemo.cpp │ ├── RagdollDemo.h │ └── main.cpp ├── RaytestDemo │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── RaytestDemo.cpp │ ├── RaytestDemo.h │ ├── Win32RaytestDemo.cpp │ └── main.cpp ├── Raytracer │ ├── CMakeLists.txt │ ├── Raytracer.cpp │ ├── Raytracer.h │ └── main.cpp ├── RollingFrictionDemo │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── RollingFrictionDemo.cpp │ ├── RollingFrictionDemo.h │ ├── Win32RollingFrictionDemo.cpp │ └── main.cpp ├── SerializeDemo │ ├── AMD │ │ ├── CMakeLists.txt │ │ └── premake4.lua │ ├── CMakeLists.txt │ ├── SerializeDemo.cpp │ ├── SerializeDemo.h │ ├── Win32SerializeDemo.cpp │ ├── main.cpp │ ├── testFile.bullet │ └── testFileCloth.bullet ├── SharedOpenCL │ ├── btOpenCLInclude.h │ ├── btOpenCLUtils.cpp │ ├── btOpenCLUtils.h │ ├── clew.c │ └── clew.h ├── SimplexDemo │ ├── CMakeLists.txt │ ├── SimplexDemo.cpp │ └── SimplexDemo.h ├── SliderConstraintDemo │ ├── CMakeLists.txt │ ├── SliderConstraintDemo.cpp │ ├── SliderConstraintDemo.h │ └── main.cpp ├── SoftDemo │ ├── AMD │ │ └── premake4.lua │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── SoftDemo.cpp │ ├── SoftDemo.h │ ├── bunny.inl │ ├── cube.inl │ └── main.cpp ├── TerrainDemo │ ├── Makefile.am │ ├── Makefile.in │ ├── TerrainDemo.cpp │ ├── TerrainDemo.h │ └── main.cpp ├── ThreadingDemo │ ├── CMakeLists.txt │ └── main.cpp ├── UserCollisionAlgorithm │ ├── CMakeLists.txt │ ├── UserCollisionAlgorithm.cpp │ └── UserCollisionAlgorithm.h ├── VectorAdd_OpenCL │ ├── AMD │ │ └── CMakeLists.txt │ ├── Apple │ │ └── CMakeLists.txt │ ├── CMakeLists.txt │ ├── MiniCL │ │ └── CMakeLists.txt │ ├── MiniCL_VectorAdd.cpp │ ├── NVidia │ │ └── CMakeLists.txt │ └── VectorAddKernels.cl ├── VehicleDemo │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── VehicleDemo.cpp │ ├── VehicleDemo.h │ └── main.cpp ├── VoronoiFractureDemo │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── VoronoiFractureDemo.cpp │ ├── VoronoiFractureDemo.h │ ├── Win32VoronoiFractureDemo.cpp │ └── main.cpp └── premake4.lua ├── Doxyfile ├── Extras ├── AllBulletDemosOSX │ ├── AllBulletDemos.xcodeproj │ │ ├── TemplateIcon.icns │ │ ├── project.pbxproj │ │ ├── zakariya.pbxuser │ │ └── zakariya.perspectivev3 │ ├── AllBulletDemos_Prefix.pch │ ├── BulletIcon.icns │ ├── BulletIcon.psd │ ├── English.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ ├── Info.plist │ ├── README.txt │ ├── main.m │ └── src │ │ ├── BTDemo.h │ │ ├── BTDemo.mm │ │ ├── BTDemosAppController.h │ │ ├── BTDemosAppController.m │ │ ├── BTSimulationParameters.h │ │ ├── BTSimulationParameters.m │ │ └── toolkit │ │ ├── BTFullscreenWindow.h │ │ ├── BTFullscreenWindow.m │ │ ├── BTGLUTKeyAdapter.h │ │ ├── BTGLUTKeyAdapter.m │ │ ├── BTOpenGLDisplayDelegate.h │ │ ├── BTOpenGLView.h │ │ └── BTOpenGLView.m ├── CDTestFramework │ ├── AntTweakBar │ │ ├── ChangeLog.txt │ │ ├── Clean.bat │ │ ├── License.txt │ │ ├── Readme.txt │ │ ├── include │ │ │ └── AntTweakBar.h │ │ └── src │ │ │ ├── AntPerfTimer.h │ │ │ ├── AntTweakBar.rc │ │ │ ├── AntTweakBar.sln │ │ │ ├── AntTweakBar.vcproj │ │ │ ├── LoadOGL.cpp │ │ │ ├── LoadOGL.h │ │ │ ├── LoadOGLCore.cpp │ │ │ ├── LoadOGLCore.h │ │ │ ├── Makefile │ │ │ ├── Makefile.x86_64 │ │ │ ├── MiniGLUT.h │ │ │ ├── TwBar.cpp │ │ │ ├── TwBar.h │ │ │ ├── TwColors.cpp │ │ │ ├── TwColors.h │ │ │ ├── TwDirect3D10.cpp │ │ │ ├── TwDirect3D10.h │ │ │ ├── TwDirect3D11.cpp │ │ │ ├── TwDirect3D11.h │ │ │ ├── TwDirect3D9.cpp │ │ │ ├── TwDirect3D9.h │ │ │ ├── TwEventGLFW.c │ │ │ ├── TwEventGLUT.c │ │ │ ├── TwEventSDL.c │ │ │ ├── TwEventWin.c │ │ │ ├── TwEventWin32.c │ │ │ ├── TwEventX11.c │ │ │ ├── TwFonts.cpp │ │ │ ├── TwFonts.h │ │ │ ├── TwGraph.h │ │ │ ├── TwMgr.cpp │ │ │ ├── TwMgr.h │ │ │ ├── TwOpenGL.cpp │ │ │ ├── TwOpenGL.h │ │ │ ├── TwOpenGLCore.cpp │ │ │ ├── TwOpenGLCore.h │ │ │ ├── TwPrecomp.cpp │ │ │ ├── TwPrecomp.h │ │ │ ├── d3d10vs2003.h │ │ │ ├── res │ │ │ ├── FontChars.txt │ │ │ ├── FontFixed1.pgm │ │ │ ├── FontLargeAA.pgm │ │ │ ├── FontNormal.pgm │ │ │ ├── FontNormalAA.pgm │ │ │ ├── FontSmall.pgm │ │ │ ├── TwXCursors.h │ │ │ ├── cur00000.cur │ │ │ ├── cur00001.cur │ │ │ ├── cur00002.cur │ │ │ ├── cur00003.cur │ │ │ ├── cur00004.cur │ │ │ ├── cur00005.cur │ │ │ ├── cur00006.cur │ │ │ ├── cur00007.cur │ │ │ ├── cur00008.cur │ │ │ ├── cur00009.cur │ │ │ ├── cur00010.cur │ │ │ ├── cur00011.cur │ │ │ ├── cur00012.cur │ │ │ ├── cur00013.cur │ │ │ ├── curs00.pbm │ │ │ ├── curs01.pbm │ │ │ ├── curs02.pbm │ │ │ ├── curs03.pbm │ │ │ ├── curs04.pbm │ │ │ ├── curs05.pbm │ │ │ ├── curs06.pbm │ │ │ ├── curs07.pbm │ │ │ ├── curs08.pbm │ │ │ ├── curs09.pbm │ │ │ ├── curs10.pbm │ │ │ ├── curs11.pbm │ │ │ ├── curs12.pbm │ │ │ ├── curs13.pbm │ │ │ ├── mask00.pbm │ │ │ ├── mask01.pbm │ │ │ ├── mask02.pbm │ │ │ ├── mask03.pbm │ │ │ ├── mask04.pbm │ │ │ ├── mask05.pbm │ │ │ ├── mask06.pbm │ │ │ ├── mask07.pbm │ │ │ ├── mask08.pbm │ │ │ ├── mask09.pbm │ │ │ ├── mask10.pbm │ │ │ ├── mask11.pbm │ │ │ ├── mask12.pbm │ │ │ └── mask13.pbm │ │ │ └── resource.h │ ├── BipartiteBoxPruning.cpp │ ├── BipartiteBoxPruning.h │ ├── BulletSAPCompleteBoxPruningTest.cpp │ ├── BulletSAPCompleteBoxPruningTest.h │ ├── CDTestFramework.cpp │ ├── CDTestFramework.h │ ├── CDTestFramework.sln │ ├── CDTestFramework.txt │ ├── CDTestFramework.vcproj │ ├── Camera.cpp │ ├── Camera.h │ ├── CapsuleMeshQuery.cpp │ ├── CapsuleMeshQuery.h │ ├── CollisionTest.cpp │ ├── CollisionTest.h │ ├── CompleteBoxPruning.cpp │ ├── CompleteBoxPruning.h │ ├── GLFontData.h │ ├── GLFontRenderer.cpp │ ├── GLFontRenderer.h │ ├── GLUT32.DLL │ ├── History.txt │ ├── IceHelpers.cpp │ ├── IceHelpers.h │ ├── License.txt │ ├── License.txt.bak │ ├── OBBMeshQuery.cpp │ ├── OBBMeshQuery.h │ ├── Opcode │ │ ├── Ice │ │ │ ├── IceAABB.cpp │ │ │ ├── IceAABB.h │ │ │ ├── IceAllocator.cpp │ │ │ ├── IceAllocator.h │ │ │ ├── IceAssert.h │ │ │ ├── IceAxes.h │ │ │ ├── IceBitArray.cpp │ │ │ ├── IceBitArray.h │ │ │ ├── IceBoundingSphere.h │ │ │ ├── IceContainer.cpp │ │ │ ├── IceContainer.h │ │ │ ├── IceFPU.h │ │ │ ├── IceHPoint.cpp │ │ │ ├── IceHPoint.h │ │ │ ├── IceHashing.h │ │ │ ├── IceIndexedTriangle.cpp │ │ │ ├── IceIndexedTriangle.h │ │ │ ├── IceLSS.h │ │ │ ├── IceMatrix3x3.cpp │ │ │ ├── IceMatrix3x3.h │ │ │ ├── IceMatrix4x4.cpp │ │ │ ├── IceMatrix4x4.h │ │ │ ├── IceMemoryMacros.h │ │ │ ├── IceOBB.cpp │ │ │ ├── IceOBB.h │ │ │ ├── IcePairs.h │ │ │ ├── IcePlane.cpp │ │ │ ├── IcePlane.h │ │ │ ├── IcePoint.cpp │ │ │ ├── IcePoint.h │ │ │ ├── IcePreprocessor.h │ │ │ ├── IceRandom.cpp │ │ │ ├── IceRandom.h │ │ │ ├── IceRay.cpp │ │ │ ├── IceRay.h │ │ │ ├── IceRevisitedRadix.cpp │ │ │ ├── IceRevisitedRadix.h │ │ │ ├── IceSegment.cpp │ │ │ ├── IceSegment.h │ │ │ ├── IceTriangle.cpp │ │ │ ├── IceTriangle.h │ │ │ ├── IceTrilist.h │ │ │ ├── IceTypes.h │ │ │ ├── IceUtils.cpp │ │ │ ├── IceUtils.h │ │ │ ├── _IceAABB.h │ │ │ ├── _IceContainer.cpp │ │ │ ├── _IceContainer.h │ │ │ ├── _IceFPU.h │ │ │ ├── _IceMemoryMacros.h │ │ │ ├── _IcePreprocessor.h │ │ │ ├── _IceRevisitedRadix.cpp │ │ │ ├── _IceRevisitedRadix.h │ │ │ ├── _IceTypes.h │ │ │ └── _IceUtils.h │ │ ├── OPC_AABBCollider.cpp │ │ ├── OPC_AABBCollider.h │ │ ├── OPC_AABBTree.cpp │ │ ├── OPC_AABBTree.h │ │ ├── OPC_ArraySAP.cpp │ │ ├── OPC_ArraySAP.h │ │ ├── OPC_BaseModel.cpp │ │ ├── OPC_BaseModel.h │ │ ├── OPC_BoxBoxOverlap.h │ │ ├── OPC_BoxPruning.cpp │ │ ├── OPC_BoxPruning.h │ │ ├── OPC_Collider.cpp │ │ ├── OPC_Collider.h │ │ ├── OPC_Common.cpp │ │ ├── OPC_Common.h │ │ ├── OPC_HybridModel.cpp │ │ ├── OPC_HybridModel.h │ │ ├── OPC_IceHook.h │ │ ├── OPC_LSSAABBOverlap.h │ │ ├── OPC_LSSCollider.cpp │ │ ├── OPC_LSSCollider.h │ │ ├── OPC_LSSTriOverlap.h │ │ ├── OPC_MeshInterface.cpp │ │ ├── OPC_MeshInterface.h │ │ ├── OPC_Model.cpp │ │ ├── OPC_Model.h │ │ ├── OPC_OBBCollider.cpp │ │ ├── OPC_OBBCollider.h │ │ ├── OPC_OptimizedTree.cpp │ │ ├── OPC_OptimizedTree.h │ │ ├── OPC_Picking.cpp │ │ ├── OPC_Picking.h │ │ ├── OPC_PlanesAABBOverlap.h │ │ ├── OPC_PlanesCollider.cpp │ │ ├── OPC_PlanesCollider.h │ │ ├── OPC_PlanesTriOverlap.h │ │ ├── OPC_RayAABBOverlap.h │ │ ├── OPC_RayCollider.cpp │ │ ├── OPC_RayCollider.h │ │ ├── OPC_RayTriOverlap.h │ │ ├── OPC_Settings.h │ │ ├── OPC_SphereAABBOverlap.h │ │ ├── OPC_SphereCollider.cpp │ │ ├── OPC_SphereCollider.h │ │ ├── OPC_SphereTriOverlap.h │ │ ├── OPC_SweepAndPrune.cpp │ │ ├── OPC_SweepAndPrune.h │ │ ├── OPC_TreeBuilders.cpp │ │ ├── OPC_TreeBuilders.h │ │ ├── OPC_TreeCollider.cpp │ │ ├── OPC_TreeCollider.h │ │ ├── OPC_TriBoxOverlap.h │ │ ├── OPC_TriTriOverlap.h │ │ ├── OPC_VolumeCollider.cpp │ │ ├── OPC_VolumeCollider.h │ │ ├── Opcode.cpp │ │ ├── Opcode.dsp │ │ ├── Opcode.dsw │ │ ├── Opcode.h │ │ ├── Opcode.sln │ │ ├── Opcode.vcproj │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ └── StdAfx.h │ ├── OpcodeArraySAPTest.cpp │ ├── OpcodeArraySAPTest.h │ ├── Profiling.h │ ├── ReadMe.txt │ ├── RenderingHelpers.cpp │ ├── RenderingHelpers.h │ ├── SphereMeshQuery.cpp │ ├── SphereMeshQuery.h │ ├── Terrain.cpp │ ├── Terrain.h │ ├── convex1.bin │ ├── stdafx.cpp │ └── stdafx.h ├── CMakeLists.txt ├── CUDA │ ├── btCudaBroadphase.cpp │ ├── btCudaBroadphase.cu │ ├── btCudaBroadphase.h │ ├── btCudaDefines.h │ ├── btCudaUtils.cu │ ├── btGpuDemo2dCudaFunc.cu │ ├── btGpuDemo3dCudaFunc.cu │ ├── cutil_gl_error.h │ ├── cutil_math.h │ ├── libbulletcuda.vcproj │ ├── radixsort.cu │ ├── radixsort.cuh │ └── radixsort_kernel.cu ├── ConvexDecomposition │ ├── CMakeLists.txt │ ├── ConvexBuilder.cpp │ ├── ConvexBuilder.h │ ├── ConvexDecomposition.cpp │ ├── ConvexDecomposition.h │ ├── bestfit.cpp │ ├── bestfit.h │ ├── bestfitobb.cpp │ ├── bestfitobb.h │ ├── cd_hull.cpp │ ├── cd_hull.h │ ├── cd_vector.h │ ├── cd_wavefront.cpp │ ├── cd_wavefront.h │ ├── concavity.cpp │ ├── concavity.h │ ├── fitsphere.cpp │ ├── fitsphere.h │ ├── float_math.cpp │ ├── float_math.h │ ├── meshvolume.cpp │ ├── meshvolume.h │ ├── planetri.cpp │ ├── planetri.h │ ├── premake4.lua │ ├── raytri.cpp │ ├── raytri.h │ ├── splitplane.cpp │ ├── splitplane.h │ ├── vlookup.cpp │ └── vlookup.h ├── GIMPACTUtils │ ├── CMakeLists.txt │ ├── btGImpactConvexDecompositionShape.cpp │ └── btGImpactConvexDecompositionShape.h ├── HACD │ ├── CMakeLists.txt │ ├── hacdCircularList.h │ ├── hacdCircularList.inl │ ├── hacdGraph.cpp │ ├── hacdGraph.h │ ├── hacdHACD.cpp │ ├── hacdHACD.h │ ├── hacdICHull.cpp │ ├── hacdICHull.h │ ├── hacdManifoldMesh.cpp │ ├── hacdManifoldMesh.h │ ├── hacdVector.h │ ├── hacdVector.inl │ ├── hacdVersion.h │ └── premake4.lua ├── Makefile.am ├── Makefile.in ├── Serialize │ ├── BlenderSerialize │ │ ├── CMakeLists.txt │ │ ├── bBlenderFile.cpp │ │ ├── bBlenderFile.h │ │ ├── bMain.cpp │ │ ├── bMain.h │ │ ├── dna249-64bit.cpp │ │ └── dna249.cpp │ ├── BulletFileLoader │ │ ├── CMakeLists.txt │ │ ├── autogenerated │ │ │ └── bullet.h │ │ ├── bChunk.cpp │ │ ├── bChunk.h │ │ ├── bCommon.h │ │ ├── bDNA.cpp │ │ ├── bDNA.h │ │ ├── bDefines.h │ │ ├── bFile.cpp │ │ ├── bFile.h │ │ ├── btBulletFile.cpp │ │ ├── btBulletFile.h │ │ └── premake4.lua │ ├── BulletWorldImporter │ │ ├── CMakeLists.txt │ │ ├── btBulletWorldImporter.cpp │ │ ├── btBulletWorldImporter.h │ │ ├── btWorldImporter.cpp │ │ ├── btWorldImporter.h │ │ └── premake4.lua │ ├── BulletXmlWorldImporter │ │ ├── CMakeLists.txt │ │ ├── btBulletXmlWorldImporter.cpp │ │ ├── btBulletXmlWorldImporter.h │ │ ├── premake4.lua │ │ ├── string_split.cpp │ │ ├── string_split.h │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ ├── CMakeLists.txt │ ├── HeaderGenerator │ │ ├── CMakeLists.txt │ │ ├── apiGen.cpp │ │ ├── blenderGenerate.py │ │ ├── bulletGenerate.py │ │ └── createDnaString.bat │ ├── ReadBulletSample │ │ ├── BulletDataExtractor.cpp │ │ ├── BulletDataExtractor.h │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── makesdna │ │ ├── CMakeLists.txt │ │ ├── DNA_rigidbody.h │ │ └── makesdna.cpp ├── glui │ ├── CMakeLists.txt │ ├── GL │ │ └── glui.h │ ├── algebra3.cpp │ ├── algebra3.h │ ├── arcball.cpp │ ├── arcball.h │ ├── glui.cpp │ ├── glui_add_controls.cpp │ ├── glui_bitmap_img_data.cpp │ ├── glui_bitmaps.cpp │ ├── glui_button.cpp │ ├── glui_checkbox.cpp │ ├── glui_column.cpp │ ├── glui_commandline.cpp │ ├── glui_control.cpp │ ├── glui_edittext.cpp │ ├── glui_filebrowser.cpp │ ├── glui_internal.h │ ├── glui_internal_control.h │ ├── glui_list.cpp │ ├── glui_listbox.cpp │ ├── glui_mouse_iaction.cpp │ ├── glui_node.cpp │ ├── glui_panel.cpp │ ├── glui_radio.cpp │ ├── glui_rollout.cpp │ ├── glui_rotation.cpp │ ├── glui_scrollbar.cpp │ ├── glui_separator.cpp │ ├── glui_spinner.cpp │ ├── glui_statictext.cpp │ ├── glui_string.cpp │ ├── glui_textbox.cpp │ ├── glui_translation.cpp │ ├── glui_tree.cpp │ ├── glui_treepanel.cpp │ ├── glui_window.cpp │ ├── quaternion.cpp │ ├── quaternion.h │ └── readme.txt ├── khx2dae │ ├── Bullet_dae_screenshot.jpg │ ├── Havok5.5toColladaPhysics.dae │ ├── Havok_hkx_screenshot.jpg │ ├── SimpleLoadDemo.patch │ └── readme.txt ├── premake4.lua └── sph │ ├── READ_ME.txt │ ├── cmp.sh │ ├── common │ ├── GLee.c │ ├── GLee.h │ ├── common_defs.h │ ├── geomx.cpp │ ├── geomx.h │ ├── gl_helper.cpp │ ├── gl_helper.h │ ├── glext.h │ ├── glut.h │ ├── image.cpp │ ├── image.h │ ├── matrix-inline.h │ ├── matrix.cci │ ├── matrix.cpp │ ├── matrix.h │ ├── mdebug.cpp │ ├── mdebug.h │ ├── mesh.cpp │ ├── mesh.h │ ├── mesh_info.h │ ├── mtime.cpp │ ├── mtime.h │ ├── particle.cpp │ ├── particle.h │ ├── point_set.cpp │ ├── point_set.h │ ├── vector-inline.h │ ├── vector.cci │ ├── vector.cpp │ └── vector.h │ ├── fluid_system_host.linkinfo │ ├── fluids.vcproj │ ├── fluids │ ├── fluid.cpp │ ├── fluid.h │ ├── fluid_system.cpp │ ├── fluid_system.cu │ ├── fluid_system.h │ ├── fluid_system_host.cu │ ├── fluid_system_host.cuh │ ├── fluid_system_kern.cu │ ├── fluid_system_kern.cuh │ ├── radixsort.cu │ ├── radixsort.cuh │ └── radixsort_kernel.cu │ ├── fluids_2005.sln │ ├── fluids_2005.vcproj │ └── main.cpp ├── GLUT32.DLL ├── Glut ├── EmptyGL │ └── GL │ │ ├── egl_cpx.h │ │ ├── egl_defs.h │ │ ├── egl_logged.h │ │ ├── egl_tokens.h │ │ ├── egl_void.h │ │ ├── gl.h │ │ ├── glu.h │ │ └── glut.h ├── GL │ ├── glew.h │ ├── glext.h │ ├── glut.h │ ├── glxew.h │ ├── glxext.h │ ├── wglew.h │ └── wglext.h ├── btGlutInclude.h ├── glew32s.lib ├── glew64s.lib ├── glut32.lib └── glut64.lib ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.md ├── RELEASING.TXT ├── Test ├── Info.plist ├── README.txt ├── Source │ ├── TestList.cpp │ ├── TestList.h │ ├── Tests │ │ ├── Test_3x3getRot.cpp │ │ ├── Test_3x3getRot.h │ │ ├── Test_3x3mulM.cpp │ │ ├── Test_3x3mulM.h │ │ ├── Test_3x3mulM1M2.cpp │ │ ├── Test_3x3mulM1M2.h │ │ ├── Test_3x3mulMV.cpp │ │ ├── Test_3x3mulMV.h │ │ ├── Test_3x3mulVM.cpp │ │ ├── Test_3x3mulVM.h │ │ ├── Test_3x3setRot.cpp │ │ ├── Test_3x3setRot.h │ │ ├── Test_3x3timesTranspose.cpp │ │ ├── Test_3x3timesTranspose.h │ │ ├── Test_3x3transpose.cpp │ │ ├── Test_3x3transpose.h │ │ ├── Test_3x3transposeTimes.cpp │ │ ├── Test_3x3transposeTimes.h │ │ ├── Test_btDbvt.cpp │ │ ├── Test_btDbvt.h │ │ ├── Test_dot3.cpp │ │ ├── Test_dot3.h │ │ ├── Test_maxdot.cpp │ │ ├── Test_maxdot.h │ │ ├── Test_mindot.cpp │ │ ├── Test_mindot.h │ │ ├── Test_qtdot.cpp │ │ ├── Test_qtdot.h │ │ ├── Test_qtmul.cpp │ │ ├── Test_qtmul.h │ │ ├── Test_qtmulQV3.cpp │ │ ├── Test_qtmulQV3.h │ │ ├── Test_qtmulV3Q.cpp │ │ ├── Test_qtmulV3Q.h │ │ ├── Test_qtnorm.cpp │ │ ├── Test_qtnorm.h │ │ ├── Test_quat_aos_neon.cpp │ │ ├── Test_quat_aos_neon.h │ │ ├── Test_v3cross.cpp │ │ ├── Test_v3cross.h │ │ ├── Test_v3div.cpp │ │ ├── Test_v3div.h │ │ ├── Test_v3dot.cpp │ │ ├── Test_v3dot.h │ │ ├── Test_v3interp.cpp │ │ ├── Test_v3interp.h │ │ ├── Test_v3lerp.cpp │ │ ├── Test_v3lerp.h │ │ ├── Test_v3norm.cpp │ │ ├── Test_v3norm.h │ │ ├── Test_v3rotate.cpp │ │ ├── Test_v3rotate.h │ │ ├── Test_v3sdiv.cpp │ │ ├── Test_v3sdiv.h │ │ ├── Test_v3skew.cpp │ │ ├── Test_v3skew.h │ │ ├── Test_v3triple.cpp │ │ └── Test_v3triple.h │ ├── Utils.cpp │ ├── Utils.h │ ├── btIntDefines.h │ ├── main.cpp │ ├── main.h │ └── vector.h └── premake4.lua ├── UnitTests ├── BulletUnitTests │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── TestBulletOnly.h │ ├── TestCholeskyDecomposition.cpp │ ├── TestCholeskyDecomposition.h │ ├── TestLinearMath.h │ ├── TestPolarDecomposition.cpp │ ├── TestPolarDecomposition.h │ ├── btCholeskyDecomposition.cpp │ └── btCholeskyDecomposition.h ├── CMakeLists.txt └── cppunit │ ├── AUTHORS │ ├── BUGS │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── CodingGuideLines.txt │ ├── THANKS │ ├── TODO │ ├── include │ └── cppunit │ │ ├── AdditionalMessage.h │ │ ├── Asserter.h │ │ ├── BriefTestProgressListener.h │ │ ├── CompilerOutputter.h │ │ ├── Exception.h │ │ ├── Message.h │ │ ├── Outputter.h │ │ ├── Portability.h │ │ ├── Protector.h │ │ ├── SourceLine.h │ │ ├── SynchronizedObject.h │ │ ├── Test.h │ │ ├── TestAssert.h │ │ ├── TestCaller.h │ │ ├── TestCase.h │ │ ├── TestComposite.h │ │ ├── TestFailure.h │ │ ├── TestFixture.h │ │ ├── TestLeaf.h │ │ ├── TestListener.h │ │ ├── TestPath.h │ │ ├── TestResult.h │ │ ├── TestResultCollector.h │ │ ├── TestRunner.h │ │ ├── TestSuccessListener.h │ │ ├── TestSuite.h │ │ ├── TextOutputter.h │ │ ├── TextTestProgressListener.h │ │ ├── TextTestResult.h │ │ ├── TextTestRunner.h │ │ ├── XmlOutputter.h │ │ ├── XmlOutputterHook.h │ │ ├── config-auto.h │ │ ├── config │ │ ├── CppUnitApi.h │ │ ├── SelectDllLoader.h │ │ ├── SourcePrefix.h │ │ ├── config-bcb5.h │ │ ├── config-evc4.h │ │ ├── config-mac.h │ │ └── config-msvc6.h │ │ ├── extensions │ │ ├── AutoRegisterSuite.h │ │ ├── ExceptionTestCaseDecorator.h │ │ ├── HelperMacros.h │ │ ├── Orthodox.h │ │ ├── RepeatedTest.h │ │ ├── TestCaseDecorator.h │ │ ├── TestDecorator.h │ │ ├── TestFactory.h │ │ ├── TestFactoryRegistry.h │ │ ├── TestFixtureFactory.h │ │ ├── TestNamer.h │ │ ├── TestSetUp.h │ │ ├── TestSuiteBuilderContext.h │ │ ├── TestSuiteFactory.h │ │ ├── TypeInfoHelper.h │ │ └── XmlInputHelper.h │ │ ├── plugin │ │ ├── DynamicLibraryManager.h │ │ ├── DynamicLibraryManagerException.h │ │ ├── PlugInManager.h │ │ ├── PlugInParameters.h │ │ ├── TestPlugIn.h │ │ └── TestPlugInDefaultImpl.h │ │ ├── portability │ │ ├── CppUnitDeque.h │ │ ├── CppUnitMap.h │ │ ├── CppUnitSet.h │ │ ├── CppUnitStack.h │ │ ├── CppUnitVector.h │ │ ├── FloatingPoint.h │ │ └── Stream.h │ │ ├── tools │ │ ├── Algorithm.h │ │ ├── StringTools.h │ │ ├── XmlDocument.h │ │ └── XmlElement.h │ │ └── ui │ │ └── text │ │ ├── TestRunner.h │ │ └── TextTestRunner.h │ └── src │ └── cppunit │ ├── AdditionalMessage.cpp │ ├── Asserter.cpp │ ├── BeOsDynamicLibraryManager.cpp │ ├── BriefTestProgressListener.cpp │ ├── CompilerOutputter.cpp │ ├── DefaultProtector.cpp │ ├── DefaultProtector.h │ ├── DllMain.cpp │ ├── DynamicLibraryManager.cpp │ ├── DynamicLibraryManagerException.cpp │ ├── Exception.cpp │ ├── Message.cpp │ ├── PlugInManager.cpp │ ├── PlugInParameters.cpp │ ├── Protector.cpp │ ├── ProtectorChain.cpp │ ├── ProtectorChain.h │ ├── ProtectorContext.h │ ├── RepeatedTest.cpp │ ├── ShlDynamicLibraryManager.cpp │ ├── SourceLine.cpp │ ├── StringTools.cpp │ ├── SynchronizedObject.cpp │ ├── Test.cpp │ ├── TestAssert.cpp │ ├── TestCase.cpp │ ├── TestCaseDecorator.cpp │ ├── TestComposite.cpp │ ├── TestDecorator.cpp │ ├── TestFactoryRegistry.cpp │ ├── TestFailure.cpp │ ├── TestLeaf.cpp │ ├── TestNamer.cpp │ ├── TestPath.cpp │ ├── TestPlugInDefaultImpl.cpp │ ├── TestResult.cpp │ ├── TestResultCollector.cpp │ ├── TestRunner.cpp │ ├── TestSetUp.cpp │ ├── TestSuccessListener.cpp │ ├── TestSuite.cpp │ ├── TestSuiteBuilderContext.cpp │ ├── TextOutputter.cpp │ ├── TextTestProgressListener.cpp │ ├── TextTestResult.cpp │ ├── TextTestRunner.cpp │ ├── TypeInfoHelper.cpp │ ├── UnixDynamicLibraryManager.cpp │ ├── Win32DynamicLibraryManager.cpp │ ├── XmlDocument.cpp │ ├── XmlElement.cpp │ ├── XmlOutputter.cpp │ └── XmlOutputterHook.cpp ├── VERSION ├── acinclude.m4 ├── aclocal.m4 ├── autogen.sh ├── autom4te.cache ├── output.0 ├── output.1 ├── requests ├── traces.0 └── traces.1 ├── bullet.pc.cmake ├── bullet.pc.in ├── bullet_logo.png ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── convex0.bin ├── depcomp ├── docs ├── BulletQuickstart.pdf ├── BulletQuickstart.tex ├── building.tex ├── bullet_logo_2010_9.eps ├── faq.tex ├── helloworld.tex ├── intro.tex └── titlepic.sty ├── file.obj ├── glut64.dll ├── heightfield128x128.raw ├── install-sh ├── jenga.dae ├── lib └── readme.txt ├── ltmain.sh ├── missing ├── src ├── Bullet-C-Api.h ├── BulletCollision │ ├── BroadphaseCollision │ │ ├── btAxisSweep3.cpp │ │ ├── btAxisSweep3.h │ │ ├── btBroadphaseInterface.h │ │ ├── btBroadphaseProxy.cpp │ │ ├── btBroadphaseProxy.h │ │ ├── btCollisionAlgorithm.cpp │ │ ├── btCollisionAlgorithm.h │ │ ├── btDbvt.cpp │ │ ├── btDbvt.h │ │ ├── btDbvtBroadphase.cpp │ │ ├── btDbvtBroadphase.h │ │ ├── btDispatcher.cpp │ │ ├── btDispatcher.h │ │ ├── btMultiSapBroadphase.cpp │ │ ├── btMultiSapBroadphase.h │ │ ├── btOverlappingPairCache.cpp │ │ ├── btOverlappingPairCache.h │ │ ├── btOverlappingPairCallback.h │ │ ├── btQuantizedBvh.cpp │ │ ├── btQuantizedBvh.h │ │ ├── btSimpleBroadphase.cpp │ │ └── btSimpleBroadphase.h │ ├── CMakeLists.txt │ ├── CollisionDispatch │ │ ├── SphereTriangleDetector.cpp │ │ ├── SphereTriangleDetector.h │ │ ├── btActivatingCollisionAlgorithm.cpp │ │ ├── btActivatingCollisionAlgorithm.h │ │ ├── btBox2dBox2dCollisionAlgorithm.cpp │ │ ├── btBox2dBox2dCollisionAlgorithm.h │ │ ├── btBoxBoxCollisionAlgorithm.cpp │ │ ├── btBoxBoxCollisionAlgorithm.h │ │ ├── btBoxBoxDetector.cpp │ │ ├── btBoxBoxDetector.h │ │ ├── btCollisionConfiguration.h │ │ ├── btCollisionCreateFunc.h │ │ ├── btCollisionDispatcher.cpp │ │ ├── btCollisionDispatcher.h │ │ ├── btCollisionObject.cpp │ │ ├── btCollisionObject.h │ │ ├── btCollisionObjectWrapper.h │ │ ├── btCollisionWorld.cpp │ │ ├── btCollisionWorld.h │ │ ├── btCompoundCollisionAlgorithm.cpp │ │ ├── btCompoundCollisionAlgorithm.h │ │ ├── btConvex2dConvex2dAlgorithm.cpp │ │ ├── btConvex2dConvex2dAlgorithm.h │ │ ├── btConvexConcaveCollisionAlgorithm.cpp │ │ ├── btConvexConcaveCollisionAlgorithm.h │ │ ├── btConvexConvexAlgorithm.cpp │ │ ├── btConvexConvexAlgorithm.h │ │ ├── btConvexPlaneCollisionAlgorithm.cpp │ │ ├── btConvexPlaneCollisionAlgorithm.h │ │ ├── btDefaultCollisionConfiguration.cpp │ │ ├── btDefaultCollisionConfiguration.h │ │ ├── btEmptyCollisionAlgorithm.cpp │ │ ├── btEmptyCollisionAlgorithm.h │ │ ├── btGhostObject.cpp │ │ ├── btGhostObject.h │ │ ├── btInternalEdgeUtility.cpp │ │ ├── btInternalEdgeUtility.h │ │ ├── btManifoldResult.cpp │ │ ├── btManifoldResult.h │ │ ├── btSimulationIslandManager.cpp │ │ ├── btSimulationIslandManager.h │ │ ├── btSphereBoxCollisionAlgorithm.cpp │ │ ├── btSphereBoxCollisionAlgorithm.h │ │ ├── btSphereSphereCollisionAlgorithm.cpp │ │ ├── btSphereSphereCollisionAlgorithm.h │ │ ├── btSphereTriangleCollisionAlgorithm.cpp │ │ ├── btSphereTriangleCollisionAlgorithm.h │ │ ├── btUnionFind.cpp │ │ └── btUnionFind.h │ ├── CollisionShapes │ │ ├── btBox2dShape.cpp │ │ ├── btBox2dShape.h │ │ ├── btBoxShape.cpp │ │ ├── btBoxShape.h │ │ ├── btBvhTriangleMeshShape.cpp │ │ ├── btBvhTriangleMeshShape.h │ │ ├── btCapsuleShape.cpp │ │ ├── btCapsuleShape.h │ │ ├── btCollisionMargin.h │ │ ├── btCollisionShape.cpp │ │ ├── btCollisionShape.h │ │ ├── btCompoundShape.cpp │ │ ├── btCompoundShape.h │ │ ├── btConcaveShape.cpp │ │ ├── btConcaveShape.h │ │ ├── btConeShape.cpp │ │ ├── btConeShape.h │ │ ├── btConvex2dShape.cpp │ │ ├── btConvex2dShape.h │ │ ├── btConvexHullShape.cpp │ │ ├── btConvexHullShape.h │ │ ├── btConvexInternalShape.cpp │ │ ├── btConvexInternalShape.h │ │ ├── btConvexPointCloudShape.cpp │ │ ├── btConvexPointCloudShape.h │ │ ├── btConvexPolyhedron.cpp │ │ ├── btConvexPolyhedron.h │ │ ├── btConvexShape.cpp │ │ ├── btConvexShape.h │ │ ├── btConvexTriangleMeshShape.cpp │ │ ├── btConvexTriangleMeshShape.h │ │ ├── btCylinderShape.cpp │ │ ├── btCylinderShape.h │ │ ├── btEmptyShape.cpp │ │ ├── btEmptyShape.h │ │ ├── btHeightfieldTerrainShape.cpp │ │ ├── btHeightfieldTerrainShape.h │ │ ├── btMaterial.h │ │ ├── btMinkowskiSumShape.cpp │ │ ├── btMinkowskiSumShape.h │ │ ├── btMultiSphereShape.cpp │ │ ├── btMultiSphereShape.h │ │ ├── btMultimaterialTriangleMeshShape.cpp │ │ ├── btMultimaterialTriangleMeshShape.h │ │ ├── btOptimizedBvh.cpp │ │ ├── btOptimizedBvh.h │ │ ├── btPolyhedralConvexShape.cpp │ │ ├── btPolyhedralConvexShape.h │ │ ├── btScaledBvhTriangleMeshShape.cpp │ │ ├── btScaledBvhTriangleMeshShape.h │ │ ├── btShapeHull.cpp │ │ ├── btShapeHull.h │ │ ├── btSphereShape.cpp │ │ ├── btSphereShape.h │ │ ├── btStaticPlaneShape.cpp │ │ ├── btStaticPlaneShape.h │ │ ├── btStridingMeshInterface.cpp │ │ ├── btStridingMeshInterface.h │ │ ├── btTetrahedronShape.cpp │ │ ├── btTetrahedronShape.h │ │ ├── btTriangleBuffer.cpp │ │ ├── btTriangleBuffer.h │ │ ├── btTriangleCallback.cpp │ │ ├── btTriangleCallback.h │ │ ├── btTriangleIndexVertexArray.cpp │ │ ├── btTriangleIndexVertexArray.h │ │ ├── btTriangleIndexVertexMaterialArray.cpp │ │ ├── btTriangleIndexVertexMaterialArray.h │ │ ├── btTriangleInfoMap.h │ │ ├── btTriangleMesh.cpp │ │ ├── btTriangleMesh.h │ │ ├── btTriangleMeshShape.cpp │ │ ├── btTriangleMeshShape.h │ │ ├── btTriangleShape.h │ │ ├── btUniformScalingShape.cpp │ │ └── btUniformScalingShape.h │ ├── Doxyfile │ ├── Gimpact │ │ ├── btBoxCollision.h │ │ ├── btClipPolygon.h │ │ ├── btContactProcessing.cpp │ │ ├── btContactProcessing.h │ │ ├── btGImpactBvh.cpp │ │ ├── btGImpactBvh.h │ │ ├── btGImpactCollisionAlgorithm.cpp │ │ ├── btGImpactCollisionAlgorithm.h │ │ ├── btGImpactMassUtil.h │ │ ├── btGImpactQuantizedBvh.cpp │ │ ├── btGImpactQuantizedBvh.h │ │ ├── btGImpactShape.cpp │ │ ├── btGImpactShape.h │ │ ├── btGenericPoolAllocator.cpp │ │ ├── btGenericPoolAllocator.h │ │ ├── btGeometryOperations.h │ │ ├── btQuantization.h │ │ ├── btTriangleShapeEx.cpp │ │ ├── btTriangleShapeEx.h │ │ ├── gim_array.h │ │ ├── gim_basic_geometry_operations.h │ │ ├── gim_bitset.h │ │ ├── gim_box_collision.h │ │ ├── gim_box_set.cpp │ │ ├── gim_box_set.h │ │ ├── gim_clip_polygon.h │ │ ├── gim_contact.cpp │ │ ├── gim_contact.h │ │ ├── gim_geom_types.h │ │ ├── gim_geometry.h │ │ ├── gim_hash_table.h │ │ ├── gim_linear_math.h │ │ ├── gim_math.h │ │ ├── gim_memory.cpp │ │ ├── gim_memory.h │ │ ├── gim_radixsort.h │ │ ├── gim_tri_collision.cpp │ │ └── gim_tri_collision.h │ ├── NarrowPhaseCollision │ │ ├── btContinuousConvexCollision.cpp │ │ ├── btContinuousConvexCollision.h │ │ ├── btConvexCast.cpp │ │ ├── btConvexCast.h │ │ ├── btConvexPenetrationDepthSolver.h │ │ ├── btDiscreteCollisionDetectorInterface.h │ │ ├── btGjkConvexCast.cpp │ │ ├── btGjkConvexCast.h │ │ ├── btGjkEpa2.cpp │ │ ├── btGjkEpa2.h │ │ ├── btGjkEpaPenetrationDepthSolver.cpp │ │ ├── btGjkEpaPenetrationDepthSolver.h │ │ ├── btGjkPairDetector.cpp │ │ ├── btGjkPairDetector.h │ │ ├── btManifoldPoint.h │ │ ├── btMinkowskiPenetrationDepthSolver.cpp │ │ ├── btMinkowskiPenetrationDepthSolver.h │ │ ├── btPersistentManifold.cpp │ │ ├── btPersistentManifold.h │ │ ├── btPointCollector.h │ │ ├── btPolyhedralContactClipping.cpp │ │ ├── btPolyhedralContactClipping.h │ │ ├── btRaycastCallback.cpp │ │ ├── btRaycastCallback.h │ │ ├── btSimplexSolverInterface.h │ │ ├── btSubSimplexConvexCast.cpp │ │ ├── btSubSimplexConvexCast.h │ │ ├── btVoronoiSimplexSolver.cpp │ │ └── btVoronoiSimplexSolver.h │ └── premake4.lua ├── BulletDynamics │ ├── CMakeLists.txt │ ├── Character │ │ ├── btCharacterControllerInterface.h │ │ ├── btKinematicCharacterController.cpp │ │ └── btKinematicCharacterController.h │ ├── ConstraintSolver │ │ ├── btConeTwistConstraint.cpp │ │ ├── btConeTwistConstraint.h │ │ ├── btConstraintSolver.h │ │ ├── btContactConstraint.cpp │ │ ├── btContactConstraint.h │ │ ├── btContactSolverInfo.h │ │ ├── btGearConstraint.cpp │ │ ├── btGearConstraint.h │ │ ├── btGeneric6DofConstraint.cpp │ │ ├── btGeneric6DofConstraint.h │ │ ├── btGeneric6DofSpringConstraint.cpp │ │ ├── btGeneric6DofSpringConstraint.h │ │ ├── btHinge2Constraint.cpp │ │ ├── btHinge2Constraint.h │ │ ├── btHingeConstraint.cpp │ │ ├── btHingeConstraint.h │ │ ├── btJacobianEntry.h │ │ ├── btPoint2PointConstraint.cpp │ │ ├── btPoint2PointConstraint.h │ │ ├── btSequentialImpulseConstraintSolver.cpp │ │ ├── btSequentialImpulseConstraintSolver.h │ │ ├── btSliderConstraint.cpp │ │ ├── btSliderConstraint.h │ │ ├── btSolve2LinearConstraint.cpp │ │ ├── btSolve2LinearConstraint.h │ │ ├── btSolverBody.h │ │ ├── btSolverConstraint.h │ │ ├── btTypedConstraint.cpp │ │ ├── btTypedConstraint.h │ │ ├── btUniversalConstraint.cpp │ │ └── btUniversalConstraint.h │ ├── Dynamics │ │ ├── Bullet-C-API.cpp │ │ ├── btActionInterface.h │ │ ├── btDiscreteDynamicsWorld.cpp │ │ ├── btDiscreteDynamicsWorld.h │ │ ├── btDynamicsWorld.h │ │ ├── btRigidBody.cpp │ │ ├── btRigidBody.h │ │ ├── btSimpleDynamicsWorld.cpp │ │ └── btSimpleDynamicsWorld.h │ ├── Vehicle │ │ ├── btRaycastVehicle.cpp │ │ ├── btRaycastVehicle.h │ │ ├── btVehicleRaycaster.h │ │ ├── btWheelInfo.cpp │ │ └── btWheelInfo.h │ └── premake4.lua ├── BulletMultiThreaded │ ├── CMakeLists.txt │ ├── GpuSoftBodySolvers │ │ ├── CMakeLists.txt │ │ ├── DX11 │ │ │ ├── CMakeLists.txt │ │ │ ├── HLSL │ │ │ │ ├── ApplyForces.hlsl │ │ │ │ ├── ComputeBounds.hlsl │ │ │ │ ├── Integrate.hlsl │ │ │ │ ├── OutputToVertexArray.hlsl │ │ │ │ ├── PrepareLinks.hlsl │ │ │ │ ├── SolvePositions.hlsl │ │ │ │ ├── SolvePositionsSIMDBatched.hlsl │ │ │ │ ├── UpdateConstants.hlsl │ │ │ │ ├── UpdateNodes.hlsl │ │ │ │ ├── UpdateNormals.hlsl │ │ │ │ ├── UpdatePositions.hlsl │ │ │ │ ├── UpdatePositionsFromVelocities.hlsl │ │ │ │ ├── VSolveLinks.hlsl │ │ │ │ ├── solveCollisionsAndUpdateVelocities.hlsl │ │ │ │ └── solveCollisionsAndUpdateVelocitiesSIMDBatched.hlsl │ │ │ ├── btSoftBodySolverBuffer_DX11.h │ │ │ ├── btSoftBodySolverLinkData_DX11.h │ │ │ ├── btSoftBodySolverLinkData_DX11SIMDAware.h │ │ │ ├── btSoftBodySolverTriangleData_DX11.h │ │ │ ├── btSoftBodySolverVertexBuffer_DX11.h │ │ │ ├── btSoftBodySolverVertexData_DX11.h │ │ │ ├── btSoftBodySolver_DX11.cpp │ │ │ ├── btSoftBodySolver_DX11.h │ │ │ ├── btSoftBodySolver_DX11SIMDAware.cpp │ │ │ ├── btSoftBodySolver_DX11SIMDAware.h │ │ │ └── premake4.lua │ │ ├── OpenCL │ │ │ ├── AMD │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── premake4.lua │ │ │ ├── Apple │ │ │ │ └── CMakeLists.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── Intel │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── premake4.lua │ │ │ ├── MiniCL │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── MiniCLTaskWrap.cpp │ │ │ ├── NVidia │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── premake4.lua │ │ │ ├── OpenCLC10 │ │ │ │ ├── ApplyForces.cl │ │ │ │ ├── ComputeBounds.cl │ │ │ │ ├── Integrate.cl │ │ │ │ ├── OutputToVertexArray.cl │ │ │ │ ├── PrepareLinks.cl │ │ │ │ ├── SolveCollisionsAndUpdateVelocities.cl │ │ │ │ ├── SolveCollisionsAndUpdateVelocitiesSIMDBatched.cl │ │ │ │ ├── SolvePositions.cl │ │ │ │ ├── SolvePositionsSIMDBatched.cl │ │ │ │ ├── UpdateConstants.cl │ │ │ │ ├── UpdateFixedVertexPositions.cl │ │ │ │ ├── UpdateNodes.cl │ │ │ │ ├── UpdateNormals.cl │ │ │ │ ├── UpdatePositions.cl │ │ │ │ ├── UpdatePositionsFromVelocities.cl │ │ │ │ └── VSolveLinks.cl │ │ │ ├── btSoftBodySolverBuffer_OpenCL.h │ │ │ ├── btSoftBodySolverLinkData_OpenCL.h │ │ │ ├── btSoftBodySolverLinkData_OpenCLSIMDAware.h │ │ │ ├── btSoftBodySolverOutputCLtoGL.cpp │ │ │ ├── btSoftBodySolverOutputCLtoGL.h │ │ │ ├── btSoftBodySolverTriangleData_OpenCL.h │ │ │ ├── btSoftBodySolverVertexBuffer_OpenGL.h │ │ │ ├── btSoftBodySolverVertexData_OpenCL.h │ │ │ ├── btSoftBodySolver_OpenCL.cpp │ │ │ ├── btSoftBodySolver_OpenCL.h │ │ │ ├── btSoftBodySolver_OpenCLSIMDAware.cpp │ │ │ └── btSoftBodySolver_OpenCLSIMDAware.h │ │ └── Shared │ │ │ └── btSoftBodySolverData.h │ ├── HeapManager.h │ ├── PlatformDefinitions.h │ ├── PosixThreadSupport.cpp │ ├── PosixThreadSupport.h │ ├── PpuAddressSpace.h │ ├── SequentialThreadSupport.cpp │ ├── SequentialThreadSupport.h │ ├── SpuCollisionObjectWrapper.cpp │ ├── SpuCollisionObjectWrapper.h │ ├── SpuCollisionTaskProcess.cpp │ ├── SpuCollisionTaskProcess.h │ ├── SpuContactManifoldCollisionAlgorithm.cpp │ ├── SpuContactManifoldCollisionAlgorithm.h │ ├── SpuDoubleBuffer.h │ ├── SpuFakeDma.cpp │ ├── SpuFakeDma.h │ ├── SpuGatheringCollisionDispatcher.cpp │ ├── SpuGatheringCollisionDispatcher.h │ ├── SpuLibspe2Support.cpp │ ├── SpuLibspe2Support.h │ ├── SpuNarrowPhaseCollisionTask │ │ ├── Box.h │ │ ├── SpuCollisionShapes.cpp │ │ ├── SpuCollisionShapes.h │ │ ├── SpuContactResult.cpp │ │ ├── SpuContactResult.h │ │ ├── SpuConvexPenetrationDepthSolver.h │ │ ├── SpuGatheringCollisionTask.cpp │ │ ├── SpuGatheringCollisionTask.h │ │ ├── SpuLocalSupport.h │ │ ├── SpuMinkowskiPenetrationDepthSolver.cpp │ │ ├── SpuMinkowskiPenetrationDepthSolver.h │ │ ├── SpuPreferredPenetrationDirections.h │ │ ├── boxBoxDistance.cpp │ │ ├── boxBoxDistance.h │ │ └── readme.txt │ ├── SpuSampleTask │ │ ├── SpuSampleTask.cpp │ │ ├── SpuSampleTask.h │ │ └── readme.txt │ ├── SpuSampleTaskProcess.cpp │ ├── SpuSampleTaskProcess.h │ ├── SpuSync.h │ ├── TrbDynBody.h │ ├── TrbStateVec.h │ ├── Win32ThreadSupport.cpp │ ├── Win32ThreadSupport.h │ ├── btGpu3DGridBroadphase.cpp │ ├── btGpu3DGridBroadphase.h │ ├── btGpu3DGridBroadphaseSharedCode.h │ ├── btGpu3DGridBroadphaseSharedDefs.h │ ├── btGpu3DGridBroadphaseSharedTypes.h │ ├── btGpuDefines.h │ ├── btGpuUtilsSharedCode.h │ ├── btGpuUtilsSharedDefs.h │ ├── btParallelConstraintSolver.cpp │ ├── btParallelConstraintSolver.h │ ├── btThreadSupportInterface.cpp │ ├── btThreadSupportInterface.h │ └── vectormath2bullet.h ├── BulletSoftBody │ ├── CMakeLists.txt │ ├── btDefaultSoftBodySolver.cpp │ ├── btDefaultSoftBodySolver.h │ ├── btSoftBody.cpp │ ├── btSoftBody.h │ ├── btSoftBodyConcaveCollisionAlgorithm.cpp │ ├── btSoftBodyConcaveCollisionAlgorithm.h │ ├── btSoftBodyData.h │ ├── btSoftBodyHelpers.cpp │ ├── btSoftBodyHelpers.h │ ├── btSoftBodyInternals.h │ ├── btSoftBodyRigidBodyCollisionConfiguration.cpp │ ├── btSoftBodyRigidBodyCollisionConfiguration.h │ ├── btSoftBodySolverVertexBuffer.h │ ├── btSoftBodySolvers.h │ ├── btSoftRigidCollisionAlgorithm.cpp │ ├── btSoftRigidCollisionAlgorithm.h │ ├── btSoftRigidDynamicsWorld.cpp │ ├── btSoftRigidDynamicsWorld.h │ ├── btSoftSoftCollisionAlgorithm.cpp │ ├── btSoftSoftCollisionAlgorithm.h │ ├── btSparseSDF.h │ └── premake4.lua ├── CMakeLists.txt ├── LinearMath │ ├── CMakeLists.txt │ ├── btAabbUtil2.h │ ├── btAlignedAllocator.cpp │ ├── btAlignedAllocator.h │ ├── btAlignedObjectArray.h │ ├── btConvexHull.cpp │ ├── btConvexHull.h │ ├── btConvexHullComputer.cpp │ ├── btConvexHullComputer.h │ ├── btDefaultMotionState.h │ ├── btGeometryUtil.cpp │ ├── btGeometryUtil.h │ ├── btGrahamScan2dConvexHull.h │ ├── btHashMap.h │ ├── btIDebugDraw.h │ ├── btList.h │ ├── btMatrix3x3.h │ ├── btMinMax.h │ ├── btMotionState.h │ ├── btPolarDecomposition.cpp │ ├── btPolarDecomposition.h │ ├── btPoolAllocator.h │ ├── btQuadWord.h │ ├── btQuaternion.h │ ├── btQuickprof.cpp │ ├── btQuickprof.h │ ├── btRandom.h │ ├── btScalar.h │ ├── btSerializer.cpp │ ├── btSerializer.h │ ├── btStackAlloc.h │ ├── btTransform.h │ ├── btTransformUtil.h │ ├── btVector3.cpp │ ├── btVector3.h │ └── premake4.lua ├── Makefile.am ├── Makefile.in ├── MiniCL │ ├── CMakeLists.txt │ ├── MiniCL.cpp │ ├── MiniCLTask │ │ ├── MiniCLTask.cpp │ │ └── MiniCLTask.h │ ├── MiniCLTaskScheduler.cpp │ ├── MiniCLTaskScheduler.h │ ├── cl.h │ ├── cl_MiniCL_Defs.h │ ├── cl_gl.h │ └── cl_platform.h ├── btBulletCollisionCommon.h ├── btBulletDynamicsCommon.h └── vectormath │ ├── neon │ ├── boolInVec.h │ ├── floatInVec.h │ ├── mat_aos.h │ ├── quat_aos.h │ ├── vec_aos.h │ └── vectormath_aos.h │ ├── scalar │ ├── boolInVec.h │ ├── floatInVec.h │ ├── mat_aos.h │ ├── quat_aos.h │ ├── vec_aos.h │ └── vectormath_aos.h │ ├── sse │ ├── boolInVec.h │ ├── floatInVec.h │ ├── mat_aos.h │ ├── quat_aos.h │ ├── vec_aos.h │ ├── vecidx_aos.h │ └── vectormath_aos.h │ └── vmInclude.h └── test1.oec /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/AUTHORS -------------------------------------------------------------------------------- /BspDemo.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/BspDemo.bsp -------------------------------------------------------------------------------- /BulletLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/BulletLicense.txt -------------------------------------------------------------------------------- /Bullet_User_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Bullet_User_Manual.pdf -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/ChangeLog -------------------------------------------------------------------------------- /Demos/AllBulletDemos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/AllBulletDemos/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/AllBulletDemos/DemoEntries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/AllBulletDemos/DemoEntries.cpp -------------------------------------------------------------------------------- /Demos/AllBulletDemos/DemoEntries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/AllBulletDemos/DemoEntries.h -------------------------------------------------------------------------------- /Demos/AllBulletDemos/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/AllBulletDemos/Main.cpp -------------------------------------------------------------------------------- /Demos/AllBulletDemos/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/AllBulletDemos/Makefile.am -------------------------------------------------------------------------------- /Demos/AllBulletDemos/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/AllBulletDemos/Makefile.in -------------------------------------------------------------------------------- /Demos/BasicDemo/BasicDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BasicDemo/BasicDemo.cpp -------------------------------------------------------------------------------- /Demos/BasicDemo/BasicDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BasicDemo/BasicDemo.h -------------------------------------------------------------------------------- /Demos/BasicDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BasicDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/BasicDemo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BasicDemo/Makefile.am -------------------------------------------------------------------------------- /Demos/BasicDemo/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BasicDemo/Makefile.in -------------------------------------------------------------------------------- /Demos/BasicDemo/Win32BasicDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BasicDemo/Win32BasicDemo.cpp -------------------------------------------------------------------------------- /Demos/BasicDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BasicDemo/main.cpp -------------------------------------------------------------------------------- /Demos/Benchmarks/BenchmarkDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Benchmarks/BenchmarkDemo.cpp -------------------------------------------------------------------------------- /Demos/Benchmarks/BenchmarkDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Benchmarks/BenchmarkDemo.h -------------------------------------------------------------------------------- /Demos/Benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/Benchmarks/Taru.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Benchmarks/Taru.mdl -------------------------------------------------------------------------------- /Demos/Benchmarks/Win32BenchmarkDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Benchmarks/Win32BenchmarkDemo.cpp -------------------------------------------------------------------------------- /Demos/Benchmarks/landscape.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Benchmarks/landscape.mdl -------------------------------------------------------------------------------- /Demos/Benchmarks/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Benchmarks/main.cpp -------------------------------------------------------------------------------- /Demos/Benchmarks/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Benchmarks/premake4.lua -------------------------------------------------------------------------------- /Demos/Box2dDemo/Box2dDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Box2dDemo/Box2dDemo.cpp -------------------------------------------------------------------------------- /Demos/Box2dDemo/Box2dDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Box2dDemo/Box2dDemo.h -------------------------------------------------------------------------------- /Demos/Box2dDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Box2dDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/Box2dDemo/Win32Box2dDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Box2dDemo/Win32Box2dDemo.cpp -------------------------------------------------------------------------------- /Demos/Box2dDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Box2dDemo/main.cpp -------------------------------------------------------------------------------- /Demos/BspDemo/BspConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BspDemo/BspConverter.cpp -------------------------------------------------------------------------------- /Demos/BspDemo/BspConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BspDemo/BspConverter.h -------------------------------------------------------------------------------- /Demos/BspDemo/BspDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BspDemo/BspDemo.cpp -------------------------------------------------------------------------------- /Demos/BspDemo/BspDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BspDemo/BspDemo.h -------------------------------------------------------------------------------- /Demos/BspDemo/BspLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BspDemo/BspLoader.cpp -------------------------------------------------------------------------------- /Demos/BspDemo/BspLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BspDemo/BspLoader.h -------------------------------------------------------------------------------- /Demos/BspDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BspDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/BspDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BspDemo/main.cpp -------------------------------------------------------------------------------- /Demos/BulletDinoDemo/BulletDino.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BulletDinoDemo/BulletDino.c -------------------------------------------------------------------------------- /Demos/BulletDinoDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BulletDinoDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/BulletXmlImportDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BulletXmlImportDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/BulletXmlImportDemo/bullet_basic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BulletXmlImportDemo/bullet_basic.xml -------------------------------------------------------------------------------- /Demos/BulletXmlImportDemo/bulletser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BulletXmlImportDemo/bulletser.xml -------------------------------------------------------------------------------- /Demos/BulletXmlImportDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/BulletXmlImportDemo/main.cpp -------------------------------------------------------------------------------- /Demos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/CcdPhysicsDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CcdPhysicsDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/CcdPhysicsDemo/CcdPhysicsDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CcdPhysicsDemo/CcdPhysicsDemo.cpp -------------------------------------------------------------------------------- /Demos/CcdPhysicsDemo/CcdPhysicsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CcdPhysicsDemo/CcdPhysicsDemo.h -------------------------------------------------------------------------------- /Demos/CcdPhysicsDemo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CcdPhysicsDemo/Makefile.am -------------------------------------------------------------------------------- /Demos/CcdPhysicsDemo/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CcdPhysicsDemo/Makefile.in -------------------------------------------------------------------------------- /Demos/CcdPhysicsDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CcdPhysicsDemo/main.cpp -------------------------------------------------------------------------------- /Demos/CellSpuDemo/BasicDemo2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CellSpuDemo/BasicDemo2.cpp -------------------------------------------------------------------------------- /Demos/CellSpuDemo/BasicDemo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CellSpuDemo/BasicDemo2.h -------------------------------------------------------------------------------- /Demos/CharacterDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CharacterDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/CharacterDemo/CharacterDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CharacterDemo/CharacterDemo.cpp -------------------------------------------------------------------------------- /Demos/CharacterDemo/CharacterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CharacterDemo/CharacterDemo.h -------------------------------------------------------------------------------- /Demos/CharacterDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CharacterDemo/main.cpp -------------------------------------------------------------------------------- /Demos/CollisionDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CollisionDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/CollisionDemo/CollisionDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CollisionDemo/CollisionDemo.cpp -------------------------------------------------------------------------------- /Demos/CollisionDemo/CollisionDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CollisionDemo/CollisionDemo.h -------------------------------------------------------------------------------- /Demos/CollisionInterfaceDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CollisionInterfaceDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/CollisionInterfaceDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/CollisionInterfaceDemo/main.cpp -------------------------------------------------------------------------------- /Demos/ConcaveConvexcastDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConcaveConvexcastDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/ConcaveConvexcastDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConcaveConvexcastDemo/main.cpp -------------------------------------------------------------------------------- /Demos/ConcaveDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConcaveDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/ConcaveDemo/ConcaveDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConcaveDemo/ConcaveDemo.h -------------------------------------------------------------------------------- /Demos/ConcaveDemo/ConcavePhysicsDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConcaveDemo/ConcavePhysicsDemo.cpp -------------------------------------------------------------------------------- /Demos/ConcaveDemo/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConcaveDemo/Jamfile -------------------------------------------------------------------------------- /Demos/ConcaveDemo/Win32ConcaveDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConcaveDemo/Win32ConcaveDemo.cpp -------------------------------------------------------------------------------- /Demos/ConcaveDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConcaveDemo/main.cpp -------------------------------------------------------------------------------- /Demos/ConcaveRaycastDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConcaveRaycastDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/ConcaveRaycastDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConcaveRaycastDemo/main.cpp -------------------------------------------------------------------------------- /Demos/ConstraintDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConstraintDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/ConstraintDemo/ConstraintDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConstraintDemo/ConstraintDemo.cpp -------------------------------------------------------------------------------- /Demos/ConstraintDemo/ConstraintDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConstraintDemo/ConstraintDemo.h -------------------------------------------------------------------------------- /Demos/ConstraintDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConstraintDemo/main.cpp -------------------------------------------------------------------------------- /Demos/ConvexDecompositionDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConvexDecompositionDemo/main.cpp -------------------------------------------------------------------------------- /Demos/ConvexHullDistance/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ConvexHullDistance/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/DXUT/Core/DXUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/DXUT/Core/DXUT.cpp -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/DXUT/Core/DXUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/DXUT/Core/DXUT.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/DXUT/Core/DXUTDevice9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/DXUT/Core/DXUTDevice9.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/DXUT/Core/DXUTmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/DXUT/Core/DXUTmisc.cpp -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/DXUT/Core/DXUTmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/DXUT/Core/DXUTmisc.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/DXUT/Optional/DXUTgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/DXUT/Optional/DXUTgui.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/DXUT/Optional/DXUTres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/DXUT/Optional/DXUTres.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/DXUT/Optional/ImeUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/DXUT/Optional/ImeUi.cpp -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/DXUT/Optional/ImeUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/DXUT/Optional/ImeUi.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/DXUT/Optional/SDKmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/DXUT/Optional/SDKmesh.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/DXUT/Optional/SDKmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/DXUT/Optional/SDKmisc.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/Media/Tiny/tiny.sdkmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/Media/Tiny/tiny.sdkmesh -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/Media/Tiny/tiny.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/Media/Tiny/tiny.x -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/Media/UI/DXUTShared.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/Media/UI/DXUTShared.fx -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/Media/UI/Font.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/Media/UI/Font.dds -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/Media/UI/arrow.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/Media/UI/arrow.x -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/amdFlag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/amdFlag.bmp -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/atiFlag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/atiFlag.bmp -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/cap.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/capsule.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/cloth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/cloth.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/cloth_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/cloth_renderer.cpp -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/cloth_renderer.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/cloth_renderer.fx -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/cloth_renderer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/cloth_renderer.rc -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/cloth_renderer_PS.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/cloth_renderer_PS.hlsl -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/cloth_renderer_VS.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/cloth_renderer_VS.hlsl -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/cylinder.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/premake4.lua -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/resource.h -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/texture.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/texture.bmp -------------------------------------------------------------------------------- /Demos/DX11ClothDemo/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DX11ClothDemo/texture.png -------------------------------------------------------------------------------- /Demos/DoublePrecisionDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DoublePrecisionDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/DynamicControlDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DynamicControlDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/DynamicControlDemo/MotorDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DynamicControlDemo/MotorDemo.cpp -------------------------------------------------------------------------------- /Demos/DynamicControlDemo/MotorDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DynamicControlDemo/MotorDemo.h -------------------------------------------------------------------------------- /Demos/DynamicControlDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/DynamicControlDemo/main.cpp -------------------------------------------------------------------------------- /Demos/ForkLiftDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ForkLiftDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/ForkLiftDemo/ForkLiftDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ForkLiftDemo/ForkLiftDemo.cpp -------------------------------------------------------------------------------- /Demos/ForkLiftDemo/ForkLiftDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ForkLiftDemo/ForkLiftDemo.h -------------------------------------------------------------------------------- /Demos/ForkLiftDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ForkLiftDemo/main.cpp -------------------------------------------------------------------------------- /Demos/FractureDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/FractureDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/FractureDemo/FractureDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/FractureDemo/FractureDemo.cpp -------------------------------------------------------------------------------- /Demos/FractureDemo/FractureDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/FractureDemo/FractureDemo.h -------------------------------------------------------------------------------- /Demos/FractureDemo/Win32FractureDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/FractureDemo/Win32FractureDemo.cpp -------------------------------------------------------------------------------- /Demos/FractureDemo/btFractureBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/FractureDemo/btFractureBody.cpp -------------------------------------------------------------------------------- /Demos/FractureDemo/btFractureBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/FractureDemo/btFractureBody.h -------------------------------------------------------------------------------- /Demos/FractureDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/FractureDemo/main.cpp -------------------------------------------------------------------------------- /Demos/GenericJointDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GenericJointDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/GenericJointDemo/GenericJointDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GenericJointDemo/GenericJointDemo.cpp -------------------------------------------------------------------------------- /Demos/GenericJointDemo/GenericJointDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GenericJointDemo/GenericJointDemo.h -------------------------------------------------------------------------------- /Demos/GenericJointDemo/Ragdoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GenericJointDemo/Ragdoll.cpp -------------------------------------------------------------------------------- /Demos/GenericJointDemo/Ragdoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GenericJointDemo/Ragdoll.h -------------------------------------------------------------------------------- /Demos/GenericJointDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GenericJointDemo/main.cpp -------------------------------------------------------------------------------- /Demos/GimpactTestDemo/BunnyMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GimpactTestDemo/BunnyMesh.h -------------------------------------------------------------------------------- /Demos/GimpactTestDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GimpactTestDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/GimpactTestDemo/GimpactTestDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GimpactTestDemo/GimpactTestDemo.cpp -------------------------------------------------------------------------------- /Demos/GimpactTestDemo/GimpactTestDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GimpactTestDemo/GimpactTestDemo.h -------------------------------------------------------------------------------- /Demos/GimpactTestDemo/TorusMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GimpactTestDemo/TorusMesh.h -------------------------------------------------------------------------------- /Demos/GimpactTestDemo/Win32GimpactDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GimpactTestDemo/Win32GimpactDemo.cpp -------------------------------------------------------------------------------- /Demos/GimpactTestDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GimpactTestDemo/main.cpp -------------------------------------------------------------------------------- /Demos/GjkConvexCastDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GjkConvexCastDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/GjkConvexCastDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GjkConvexCastDemo/main.cpp -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/BasicDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/BasicDemo.cpp -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/BasicDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/BasicDemo.h -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/Makefile.am -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/btGpuDemo2dCpuFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/btGpuDemo2dCpuFunc.cpp -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/btGpuDemo2dSharedCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/btGpuDemo2dSharedCode.h -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/btGpuDemo2dSharedDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/btGpuDemo2dSharedDefs.h -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/btGpuDemo2dSharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/btGpuDemo2dSharedTypes.h -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/btGpuDemoDynamicsWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/btGpuDemoDynamicsWorld.cpp -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/btGpuDemoDynamicsWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/btGpuDemoDynamicsWorld.h -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/btGpuDemoPairCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/btGpuDemoPairCache.cpp -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/btGpuDemoPairCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/btGpuDemoPairCache.h -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/main.cpp -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/oecakeLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/oecakeLoader.cpp -------------------------------------------------------------------------------- /Demos/Gpu2dDemo/oecakeLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu2dDemo/oecakeLoader.h -------------------------------------------------------------------------------- /Demos/Gpu3dDemo/BasicDemo3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu3dDemo/BasicDemo3d.cpp -------------------------------------------------------------------------------- /Demos/Gpu3dDemo/BasicDemo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu3dDemo/BasicDemo3d.h -------------------------------------------------------------------------------- /Demos/Gpu3dDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu3dDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/Gpu3dDemo/btGpuDemo3dCpuFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu3dDemo/btGpuDemo3dCpuFunc.cpp -------------------------------------------------------------------------------- /Demos/Gpu3dDemo/btGpuDemo3dSharedCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu3dDemo/btGpuDemo3dSharedCode.h -------------------------------------------------------------------------------- /Demos/Gpu3dDemo/btGpuDemo3dSharedDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu3dDemo/btGpuDemo3dSharedDefs.h -------------------------------------------------------------------------------- /Demos/Gpu3dDemo/btGpuDemo3dSharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu3dDemo/btGpuDemo3dSharedTypes.h -------------------------------------------------------------------------------- /Demos/Gpu3dDemo/btGpuDemoDynamicsWorld3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu3dDemo/btGpuDemoDynamicsWorld3D.h -------------------------------------------------------------------------------- /Demos/Gpu3dDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Gpu3dDemo/main.cpp -------------------------------------------------------------------------------- /Demos/GyroscopicDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GyroscopicDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/GyroscopicDemo/GyroscopicDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GyroscopicDemo/GyroscopicDemo.cpp -------------------------------------------------------------------------------- /Demos/GyroscopicDemo/GyroscopicDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GyroscopicDemo/GyroscopicDemo.h -------------------------------------------------------------------------------- /Demos/GyroscopicDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/GyroscopicDemo/main.cpp -------------------------------------------------------------------------------- /Demos/HelloWorld/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/HelloWorld/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/HelloWorld/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/HelloWorld/HelloWorld.cpp -------------------------------------------------------------------------------- /Demos/HelloWorld/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/HelloWorld/premake4.lua -------------------------------------------------------------------------------- /Demos/InternalEdgeDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/InternalEdgeDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/InternalEdgeDemo/InternalEdgeDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/InternalEdgeDemo/InternalEdgeDemo.cpp -------------------------------------------------------------------------------- /Demos/InternalEdgeDemo/InternalEdgeDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/InternalEdgeDemo/InternalEdgeDemo.h -------------------------------------------------------------------------------- /Demos/InternalEdgeDemo/Taru.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/InternalEdgeDemo/Taru.mdl -------------------------------------------------------------------------------- /Demos/InternalEdgeDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/InternalEdgeDemo/main.cpp -------------------------------------------------------------------------------- /Demos/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Makefile.am -------------------------------------------------------------------------------- /Demos/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Makefile.in -------------------------------------------------------------------------------- /Demos/MovingConcaveDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/MovingConcaveDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/MovingConcaveDemo/ConcaveDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/MovingConcaveDemo/ConcaveDemo.h -------------------------------------------------------------------------------- /Demos/MultiMaterialDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/MultiMaterialDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/MultiMaterialDemo/MultiMaterialDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/MultiMaterialDemo/MultiMaterialDemo.h -------------------------------------------------------------------------------- /Demos/MultiMaterialDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/MultiMaterialDemo/main.cpp -------------------------------------------------------------------------------- /Demos/MultiThreadedDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/MultiThreadedDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/MultiThreadedDemo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/MultiThreadedDemo/Makefile.am -------------------------------------------------------------------------------- /Demos/MultiThreadedDemo/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/MultiThreadedDemo/Makefile.in -------------------------------------------------------------------------------- /Demos/MultiThreadedDemo/MultiThreadedDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/MultiThreadedDemo/MultiThreadedDemo.h -------------------------------------------------------------------------------- /Demos/MultiThreadedDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/MultiThreadedDemo/main.cpp -------------------------------------------------------------------------------- /Demos/NativeClient/bin_html/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/bin_html/bind.js -------------------------------------------------------------------------------- /Demos/NativeClient/bin_html/dragger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/bin_html/dragger.js -------------------------------------------------------------------------------- /Demos/NativeClient/bin_html/httpd.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/bin_html/httpd.cmd -------------------------------------------------------------------------------- /Demos/NativeClient/bin_html/httpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/bin_html/httpd.py -------------------------------------------------------------------------------- /Demos/NativeClient/bin_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/bin_html/index.html -------------------------------------------------------------------------------- /Demos/NativeClient/bin_html/trackball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/bin_html/trackball.js -------------------------------------------------------------------------------- /Demos/NativeClient/bin_html/tumbler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/bin_html/tumbler.js -------------------------------------------------------------------------------- /Demos/NativeClient/bin_html/tumbler.nmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/bin_html/tumbler.nmf -------------------------------------------------------------------------------- /Demos/NativeClient/bin_html/vector3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/bin_html/vector3.js -------------------------------------------------------------------------------- /Demos/NativeClient/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/callback.h -------------------------------------------------------------------------------- /Demos/NativeClient/cube.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/cube.cc -------------------------------------------------------------------------------- /Demos/NativeClient/cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/cube.h -------------------------------------------------------------------------------- /Demos/NativeClient/opengl_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/opengl_context.cc -------------------------------------------------------------------------------- /Demos/NativeClient/opengl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/opengl_context.h -------------------------------------------------------------------------------- /Demos/NativeClient/opengl_context_ptrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/opengl_context_ptrs.h -------------------------------------------------------------------------------- /Demos/NativeClient/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/premake4.lua -------------------------------------------------------------------------------- /Demos/NativeClient/scripting_bridge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/scripting_bridge.cc -------------------------------------------------------------------------------- /Demos/NativeClient/scripting_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/scripting_bridge.h -------------------------------------------------------------------------------- /Demos/NativeClient/shader_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/shader_util.cc -------------------------------------------------------------------------------- /Demos/NativeClient/shader_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/shader_util.h -------------------------------------------------------------------------------- /Demos/NativeClient/transforms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/transforms.cc -------------------------------------------------------------------------------- /Demos/NativeClient/transforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/transforms.h -------------------------------------------------------------------------------- /Demos/NativeClient/tumbler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/tumbler.cc -------------------------------------------------------------------------------- /Demos/NativeClient/tumbler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/tumbler.h -------------------------------------------------------------------------------- /Demos/NativeClient/tumbler_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/NativeClient/tumbler_module.cc -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/AMD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/AMD/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/AMD/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/AMD/premake4.lua -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/Apple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/Apple/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/CLClothDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/CLClothDemo.sln -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/CLClothDemo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/CLClothDemo.vcproj -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/Intel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/Intel/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/Intel/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/Intel/premake4.lua -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/MiniCL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/MiniCL/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/NVidia/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/NVidia/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/NVidia/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/NVidia/premake4.lua -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/btOpenCLSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/btOpenCLSupport.h -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/cl_cloth_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/cl_cloth_demo.cpp -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/cloth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/cloth.h -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/clstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/clstuff.cpp -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/clstuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/clstuff.h -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/clstuff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/clstuff.hpp -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/fragment.glsl -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/gl_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/gl_win.cpp -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/gl_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/gl_win.h -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/gl_win.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/gl_win.hpp -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/shaders.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/shaders.cl -------------------------------------------------------------------------------- /Demos/OpenCLClothDemo/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenCLClothDemo/vertex.glsl -------------------------------------------------------------------------------- /Demos/OpenGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/OpenGL/CommandLineArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/CommandLineArguments.h -------------------------------------------------------------------------------- /Demos/OpenGL/DebugCastResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/DebugCastResult.h -------------------------------------------------------------------------------- /Demos/OpenGL/DemoApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/DemoApplication.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/DemoApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/DemoApplication.h -------------------------------------------------------------------------------- /Demos/OpenGL/GLDebugDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GLDebugDrawer.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/GLDebugDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GLDebugDrawer.h -------------------------------------------------------------------------------- /Demos/OpenGL/GLDebugFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GLDebugFont.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/GLDebugFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GLDebugFont.h -------------------------------------------------------------------------------- /Demos/OpenGL/GL_DialogDynamicsWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GL_DialogDynamicsWorld.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/GL_DialogDynamicsWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GL_DialogDynamicsWorld.h -------------------------------------------------------------------------------- /Demos/OpenGL/GL_DialogWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GL_DialogWindow.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/GL_DialogWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GL_DialogWindow.h -------------------------------------------------------------------------------- /Demos/OpenGL/GL_ShapeDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GL_ShapeDrawer.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/GL_ShapeDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GL_ShapeDrawer.h -------------------------------------------------------------------------------- /Demos/OpenGL/GL_Simplex1to4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GL_Simplex1to4.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/GL_Simplex1to4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GL_Simplex1to4.h -------------------------------------------------------------------------------- /Demos/OpenGL/GlutDemoApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GlutDemoApplication.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/GlutDemoApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GlutDemoApplication.h -------------------------------------------------------------------------------- /Demos/OpenGL/GlutStuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GlutStuff.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/GlutStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/GlutStuff.h -------------------------------------------------------------------------------- /Demos/OpenGL/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/Makefile.am -------------------------------------------------------------------------------- /Demos/OpenGL/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/Makefile.in -------------------------------------------------------------------------------- /Demos/OpenGL/RenderTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/RenderTexture.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/RenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/RenderTexture.h -------------------------------------------------------------------------------- /Demos/OpenGL/Win32AppMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/Win32AppMain.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/Win32DemoApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/Win32DemoApplication.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/Win32DemoApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/Win32DemoApplication.h -------------------------------------------------------------------------------- /Demos/OpenGL/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/premake4.lua -------------------------------------------------------------------------------- /Demos/OpenGL/stb_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/stb_image.cpp -------------------------------------------------------------------------------- /Demos/OpenGL/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenGL/stb_image.h -------------------------------------------------------------------------------- /Demos/OpenPL_Demo/CApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenPL_Demo/CApi.cpp -------------------------------------------------------------------------------- /Demos/OpenPL_Demo/OpenPL_Demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/OpenPL_Demo/OpenPL_Demo.c -------------------------------------------------------------------------------- /Demos/ParticlesOpenCL/AMD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ParticlesOpenCL/AMD/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/ParticlesOpenCL/Apple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ParticlesOpenCL/Apple/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/ParticlesOpenCL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ParticlesOpenCL/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/ParticlesOpenCL/Intel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ParticlesOpenCL/Intel/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/ParticlesOpenCL/MiniCL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ParticlesOpenCL/MiniCL/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/ParticlesOpenCL/NVidia/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ParticlesOpenCL/NVidia/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/ParticlesOpenCL/ParticlesDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ParticlesOpenCL/ParticlesDemo.cpp -------------------------------------------------------------------------------- /Demos/ParticlesOpenCL/ParticlesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ParticlesOpenCL/ParticlesDemo.h -------------------------------------------------------------------------------- /Demos/ParticlesOpenCL/ParticlesOCL.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ParticlesOpenCL/ParticlesOCL.cl -------------------------------------------------------------------------------- /Demos/ParticlesOpenCL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ParticlesOpenCL/main.cpp -------------------------------------------------------------------------------- /Demos/ParticlesOpenCL/shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ParticlesOpenCL/shaders.cpp -------------------------------------------------------------------------------- /Demos/ParticlesOpenCL/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ParticlesOpenCL/shaders.h -------------------------------------------------------------------------------- /Demos/RagdollDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RagdollDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/RagdollDemo/RagdollDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RagdollDemo/RagdollDemo.cpp -------------------------------------------------------------------------------- /Demos/RagdollDemo/RagdollDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RagdollDemo/RagdollDemo.h -------------------------------------------------------------------------------- /Demos/RagdollDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RagdollDemo/main.cpp -------------------------------------------------------------------------------- /Demos/RaytestDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RaytestDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/RaytestDemo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RaytestDemo/Makefile.am -------------------------------------------------------------------------------- /Demos/RaytestDemo/RaytestDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RaytestDemo/RaytestDemo.cpp -------------------------------------------------------------------------------- /Demos/RaytestDemo/RaytestDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RaytestDemo/RaytestDemo.h -------------------------------------------------------------------------------- /Demos/RaytestDemo/Win32RaytestDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RaytestDemo/Win32RaytestDemo.cpp -------------------------------------------------------------------------------- /Demos/RaytestDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RaytestDemo/main.cpp -------------------------------------------------------------------------------- /Demos/Raytracer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Raytracer/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/Raytracer/Raytracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Raytracer/Raytracer.cpp -------------------------------------------------------------------------------- /Demos/Raytracer/Raytracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Raytracer/Raytracer.h -------------------------------------------------------------------------------- /Demos/Raytracer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/Raytracer/main.cpp -------------------------------------------------------------------------------- /Demos/RollingFrictionDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RollingFrictionDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/RollingFrictionDemo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RollingFrictionDemo/Makefile.am -------------------------------------------------------------------------------- /Demos/RollingFrictionDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/RollingFrictionDemo/main.cpp -------------------------------------------------------------------------------- /Demos/SerializeDemo/AMD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SerializeDemo/AMD/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/SerializeDemo/AMD/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SerializeDemo/AMD/premake4.lua -------------------------------------------------------------------------------- /Demos/SerializeDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SerializeDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/SerializeDemo/SerializeDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SerializeDemo/SerializeDemo.cpp -------------------------------------------------------------------------------- /Demos/SerializeDemo/SerializeDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SerializeDemo/SerializeDemo.h -------------------------------------------------------------------------------- /Demos/SerializeDemo/Win32SerializeDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SerializeDemo/Win32SerializeDemo.cpp -------------------------------------------------------------------------------- /Demos/SerializeDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SerializeDemo/main.cpp -------------------------------------------------------------------------------- /Demos/SerializeDemo/testFile.bullet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SerializeDemo/testFile.bullet -------------------------------------------------------------------------------- /Demos/SerializeDemo/testFileCloth.bullet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SerializeDemo/testFileCloth.bullet -------------------------------------------------------------------------------- /Demos/SharedOpenCL/btOpenCLInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SharedOpenCL/btOpenCLInclude.h -------------------------------------------------------------------------------- /Demos/SharedOpenCL/btOpenCLUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SharedOpenCL/btOpenCLUtils.cpp -------------------------------------------------------------------------------- /Demos/SharedOpenCL/btOpenCLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SharedOpenCL/btOpenCLUtils.h -------------------------------------------------------------------------------- /Demos/SharedOpenCL/clew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SharedOpenCL/clew.c -------------------------------------------------------------------------------- /Demos/SharedOpenCL/clew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SharedOpenCL/clew.h -------------------------------------------------------------------------------- /Demos/SimplexDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SimplexDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/SimplexDemo/SimplexDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SimplexDemo/SimplexDemo.cpp -------------------------------------------------------------------------------- /Demos/SimplexDemo/SimplexDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SimplexDemo/SimplexDemo.h -------------------------------------------------------------------------------- /Demos/SliderConstraintDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SliderConstraintDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/SliderConstraintDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SliderConstraintDemo/main.cpp -------------------------------------------------------------------------------- /Demos/SoftDemo/AMD/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SoftDemo/AMD/premake4.lua -------------------------------------------------------------------------------- /Demos/SoftDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SoftDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/SoftDemo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SoftDemo/Makefile.am -------------------------------------------------------------------------------- /Demos/SoftDemo/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SoftDemo/Makefile.in -------------------------------------------------------------------------------- /Demos/SoftDemo/SoftDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SoftDemo/SoftDemo.cpp -------------------------------------------------------------------------------- /Demos/SoftDemo/SoftDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SoftDemo/SoftDemo.h -------------------------------------------------------------------------------- /Demos/SoftDemo/bunny.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SoftDemo/bunny.inl -------------------------------------------------------------------------------- /Demos/SoftDemo/cube.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SoftDemo/cube.inl -------------------------------------------------------------------------------- /Demos/SoftDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/SoftDemo/main.cpp -------------------------------------------------------------------------------- /Demos/TerrainDemo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/TerrainDemo/Makefile.am -------------------------------------------------------------------------------- /Demos/TerrainDemo/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/TerrainDemo/Makefile.in -------------------------------------------------------------------------------- /Demos/TerrainDemo/TerrainDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/TerrainDemo/TerrainDemo.cpp -------------------------------------------------------------------------------- /Demos/TerrainDemo/TerrainDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/TerrainDemo/TerrainDemo.h -------------------------------------------------------------------------------- /Demos/TerrainDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/TerrainDemo/main.cpp -------------------------------------------------------------------------------- /Demos/ThreadingDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ThreadingDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/ThreadingDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/ThreadingDemo/main.cpp -------------------------------------------------------------------------------- /Demos/UserCollisionAlgorithm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/UserCollisionAlgorithm/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/VectorAdd_OpenCL/AMD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VectorAdd_OpenCL/AMD/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/VectorAdd_OpenCL/Apple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VectorAdd_OpenCL/Apple/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/VectorAdd_OpenCL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VectorAdd_OpenCL/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/VectorAdd_OpenCL/MiniCL_VectorAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VectorAdd_OpenCL/MiniCL_VectorAdd.cpp -------------------------------------------------------------------------------- /Demos/VectorAdd_OpenCL/VectorAddKernels.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VectorAdd_OpenCL/VectorAddKernels.cl -------------------------------------------------------------------------------- /Demos/VehicleDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VehicleDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/VehicleDemo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VehicleDemo/Makefile.am -------------------------------------------------------------------------------- /Demos/VehicleDemo/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VehicleDemo/Makefile.in -------------------------------------------------------------------------------- /Demos/VehicleDemo/VehicleDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VehicleDemo/VehicleDemo.cpp -------------------------------------------------------------------------------- /Demos/VehicleDemo/VehicleDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VehicleDemo/VehicleDemo.h -------------------------------------------------------------------------------- /Demos/VehicleDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VehicleDemo/main.cpp -------------------------------------------------------------------------------- /Demos/VoronoiFractureDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VoronoiFractureDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Demos/VoronoiFractureDemo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VoronoiFractureDemo/Makefile.am -------------------------------------------------------------------------------- /Demos/VoronoiFractureDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/VoronoiFractureDemo/main.cpp -------------------------------------------------------------------------------- /Demos/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Demos/premake4.lua -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Doxyfile -------------------------------------------------------------------------------- /Extras/AllBulletDemosOSX/BulletIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/AllBulletDemosOSX/BulletIcon.icns -------------------------------------------------------------------------------- /Extras/AllBulletDemosOSX/BulletIcon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/AllBulletDemosOSX/BulletIcon.psd -------------------------------------------------------------------------------- /Extras/AllBulletDemosOSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/AllBulletDemosOSX/Info.plist -------------------------------------------------------------------------------- /Extras/AllBulletDemosOSX/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/AllBulletDemosOSX/README.txt -------------------------------------------------------------------------------- /Extras/AllBulletDemosOSX/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/AllBulletDemosOSX/main.m -------------------------------------------------------------------------------- /Extras/AllBulletDemosOSX/src/BTDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/AllBulletDemosOSX/src/BTDemo.h -------------------------------------------------------------------------------- /Extras/AllBulletDemosOSX/src/BTDemo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/AllBulletDemosOSX/src/BTDemo.mm -------------------------------------------------------------------------------- /Extras/CDTestFramework/AntTweakBar/src/TwPrecomp.cpp: -------------------------------------------------------------------------------- 1 | #include "TwPrecomp.h" 2 | -------------------------------------------------------------------------------- /Extras/CDTestFramework/CDTestFramework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/CDTestFramework.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/CDTestFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/CDTestFramework.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/CDTestFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/CDTestFramework.sln -------------------------------------------------------------------------------- /Extras/CDTestFramework/CDTestFramework.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/CDTestFramework.txt -------------------------------------------------------------------------------- /Extras/CDTestFramework/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Camera.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Camera.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/CapsuleMeshQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/CapsuleMeshQuery.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/CapsuleMeshQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/CapsuleMeshQuery.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/CollisionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/CollisionTest.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/CollisionTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/CollisionTest.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/CompleteBoxPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/CompleteBoxPruning.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/GLFontData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/GLFontData.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/GLFontRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/GLFontRenderer.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/GLFontRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/GLFontRenderer.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/GLUT32.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/GLUT32.DLL -------------------------------------------------------------------------------- /Extras/CDTestFramework/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/History.txt -------------------------------------------------------------------------------- /Extras/CDTestFramework/IceHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/IceHelpers.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/IceHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/IceHelpers.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/License.txt -------------------------------------------------------------------------------- /Extras/CDTestFramework/License.txt.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extras/CDTestFramework/OBBMeshQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/OBBMeshQuery.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/OBBMeshQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/OBBMeshQuery.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Ice/IceAABB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Ice/IceAABB.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Ice/IceAxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Ice/IceAxes.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Ice/IceFPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Ice/IceFPU.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Ice/IceLSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Ice/IceLSS.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Ice/IceOBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Ice/IceOBB.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Ice/IceRay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Ice/IceRay.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Ice/_IceFPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Ice/_IceFPU.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/OPC_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/OPC_Common.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/OPC_IceHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/OPC_IceHook.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/OPC_Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/OPC_Model.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/OPC_Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/OPC_Model.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/OPC_Picking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/OPC_Picking.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Opcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Opcode.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Opcode.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Opcode.dsp -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Opcode.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Opcode.dsw -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Opcode.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Opcode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Opcode.sln -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/Opcode.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/Opcode.vcproj -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/ReadMe.txt -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/StdAfx.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/Opcode/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Opcode/StdAfx.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/OpcodeArraySAPTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/OpcodeArraySAPTest.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Profiling.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/ReadMe.txt -------------------------------------------------------------------------------- /Extras/CDTestFramework/RenderingHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/RenderingHelpers.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/RenderingHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/RenderingHelpers.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/SphereMeshQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/SphereMeshQuery.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/SphereMeshQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/SphereMeshQuery.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/Terrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Terrain.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/Terrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/Terrain.h -------------------------------------------------------------------------------- /Extras/CDTestFramework/convex1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/convex1.bin -------------------------------------------------------------------------------- /Extras/CDTestFramework/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/stdafx.cpp -------------------------------------------------------------------------------- /Extras/CDTestFramework/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CDTestFramework/stdafx.h -------------------------------------------------------------------------------- /Extras/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CMakeLists.txt -------------------------------------------------------------------------------- /Extras/CUDA/btCudaBroadphase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/btCudaBroadphase.cpp -------------------------------------------------------------------------------- /Extras/CUDA/btCudaBroadphase.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/btCudaBroadphase.cu -------------------------------------------------------------------------------- /Extras/CUDA/btCudaBroadphase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/btCudaBroadphase.h -------------------------------------------------------------------------------- /Extras/CUDA/btCudaDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/btCudaDefines.h -------------------------------------------------------------------------------- /Extras/CUDA/btCudaUtils.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/btCudaUtils.cu -------------------------------------------------------------------------------- /Extras/CUDA/btGpuDemo2dCudaFunc.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/btGpuDemo2dCudaFunc.cu -------------------------------------------------------------------------------- /Extras/CUDA/btGpuDemo3dCudaFunc.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/btGpuDemo3dCudaFunc.cu -------------------------------------------------------------------------------- /Extras/CUDA/cutil_gl_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/cutil_gl_error.h -------------------------------------------------------------------------------- /Extras/CUDA/cutil_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/cutil_math.h -------------------------------------------------------------------------------- /Extras/CUDA/libbulletcuda.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/libbulletcuda.vcproj -------------------------------------------------------------------------------- /Extras/CUDA/radixsort.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/radixsort.cu -------------------------------------------------------------------------------- /Extras/CUDA/radixsort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/radixsort.cuh -------------------------------------------------------------------------------- /Extras/CUDA/radixsort_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/CUDA/radixsort_kernel.cu -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/CMakeLists.txt -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/ConvexBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/ConvexBuilder.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/bestfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/bestfit.cpp -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/bestfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/bestfit.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/bestfitobb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/bestfitobb.cpp -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/bestfitobb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/bestfitobb.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/cd_hull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/cd_hull.cpp -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/cd_hull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/cd_hull.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/cd_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/cd_vector.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/cd_wavefront.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/cd_wavefront.cpp -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/cd_wavefront.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/cd_wavefront.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/concavity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/concavity.cpp -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/concavity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/concavity.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/fitsphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/fitsphere.cpp -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/fitsphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/fitsphere.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/float_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/float_math.cpp -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/float_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/float_math.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/meshvolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/meshvolume.cpp -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/meshvolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/meshvolume.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/planetri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/planetri.cpp -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/planetri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/planetri.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/premake4.lua -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/raytri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/raytri.cpp -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/raytri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/raytri.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/splitplane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/splitplane.cpp -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/splitplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/splitplane.h -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/vlookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/vlookup.cpp -------------------------------------------------------------------------------- /Extras/ConvexDecomposition/vlookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/ConvexDecomposition/vlookup.h -------------------------------------------------------------------------------- /Extras/GIMPACTUtils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/GIMPACTUtils/CMakeLists.txt -------------------------------------------------------------------------------- /Extras/HACD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/CMakeLists.txt -------------------------------------------------------------------------------- /Extras/HACD/hacdCircularList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdCircularList.h -------------------------------------------------------------------------------- /Extras/HACD/hacdCircularList.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdCircularList.inl -------------------------------------------------------------------------------- /Extras/HACD/hacdGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdGraph.cpp -------------------------------------------------------------------------------- /Extras/HACD/hacdGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdGraph.h -------------------------------------------------------------------------------- /Extras/HACD/hacdHACD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdHACD.cpp -------------------------------------------------------------------------------- /Extras/HACD/hacdHACD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdHACD.h -------------------------------------------------------------------------------- /Extras/HACD/hacdICHull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdICHull.cpp -------------------------------------------------------------------------------- /Extras/HACD/hacdICHull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdICHull.h -------------------------------------------------------------------------------- /Extras/HACD/hacdManifoldMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdManifoldMesh.cpp -------------------------------------------------------------------------------- /Extras/HACD/hacdManifoldMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdManifoldMesh.h -------------------------------------------------------------------------------- /Extras/HACD/hacdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdVector.h -------------------------------------------------------------------------------- /Extras/HACD/hacdVector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdVector.inl -------------------------------------------------------------------------------- /Extras/HACD/hacdVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/hacdVersion.h -------------------------------------------------------------------------------- /Extras/HACD/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/HACD/premake4.lua -------------------------------------------------------------------------------- /Extras/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Makefile.am -------------------------------------------------------------------------------- /Extras/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Makefile.in -------------------------------------------------------------------------------- /Extras/Serialize/BlenderSerialize/bMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/BlenderSerialize/bMain.cpp -------------------------------------------------------------------------------- /Extras/Serialize/BlenderSerialize/bMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/BlenderSerialize/bMain.h -------------------------------------------------------------------------------- /Extras/Serialize/BulletFileLoader/bChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/BulletFileLoader/bChunk.h -------------------------------------------------------------------------------- /Extras/Serialize/BulletFileLoader/bCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/BulletFileLoader/bCommon.h -------------------------------------------------------------------------------- /Extras/Serialize/BulletFileLoader/bDNA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/BulletFileLoader/bDNA.cpp -------------------------------------------------------------------------------- /Extras/Serialize/BulletFileLoader/bDNA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/BulletFileLoader/bDNA.h -------------------------------------------------------------------------------- /Extras/Serialize/BulletFileLoader/bFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/BulletFileLoader/bFile.cpp -------------------------------------------------------------------------------- /Extras/Serialize/BulletFileLoader/bFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/BulletFileLoader/bFile.h -------------------------------------------------------------------------------- /Extras/Serialize/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/CMakeLists.txt -------------------------------------------------------------------------------- /Extras/Serialize/HeaderGenerator/apiGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/HeaderGenerator/apiGen.cpp -------------------------------------------------------------------------------- /Extras/Serialize/ReadBulletSample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/ReadBulletSample/main.cpp -------------------------------------------------------------------------------- /Extras/Serialize/makesdna/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/makesdna/CMakeLists.txt -------------------------------------------------------------------------------- /Extras/Serialize/makesdna/DNA_rigidbody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/makesdna/DNA_rigidbody.h -------------------------------------------------------------------------------- /Extras/Serialize/makesdna/makesdna.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/Serialize/makesdna/makesdna.cpp -------------------------------------------------------------------------------- /Extras/glui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/CMakeLists.txt -------------------------------------------------------------------------------- /Extras/glui/GL/glui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/GL/glui.h -------------------------------------------------------------------------------- /Extras/glui/algebra3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/algebra3.cpp -------------------------------------------------------------------------------- /Extras/glui/algebra3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/algebra3.h -------------------------------------------------------------------------------- /Extras/glui/arcball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/arcball.cpp -------------------------------------------------------------------------------- /Extras/glui/arcball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/arcball.h -------------------------------------------------------------------------------- /Extras/glui/glui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_add_controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_add_controls.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_bitmap_img_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_bitmap_img_data.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_bitmaps.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_button.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_checkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_checkbox.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_column.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_column.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_commandline.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_control.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_edittext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_edittext.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_filebrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_filebrowser.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_internal.h -------------------------------------------------------------------------------- /Extras/glui/glui_internal_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_internal_control.h -------------------------------------------------------------------------------- /Extras/glui/glui_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_list.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_listbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_listbox.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_mouse_iaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_mouse_iaction.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_node.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_panel.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_radio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_radio.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_rollout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_rollout.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_rotation.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_scrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_scrollbar.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_separator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_separator.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_spinner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_spinner.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_statictext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_statictext.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_string.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_textbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_textbox.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_translation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_translation.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_tree.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_treepanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_treepanel.cpp -------------------------------------------------------------------------------- /Extras/glui/glui_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/glui_window.cpp -------------------------------------------------------------------------------- /Extras/glui/quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/quaternion.cpp -------------------------------------------------------------------------------- /Extras/glui/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/quaternion.h -------------------------------------------------------------------------------- /Extras/glui/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/glui/readme.txt -------------------------------------------------------------------------------- /Extras/khx2dae/Bullet_dae_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/khx2dae/Bullet_dae_screenshot.jpg -------------------------------------------------------------------------------- /Extras/khx2dae/Havok5.5toColladaPhysics.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/khx2dae/Havok5.5toColladaPhysics.dae -------------------------------------------------------------------------------- /Extras/khx2dae/Havok_hkx_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/khx2dae/Havok_hkx_screenshot.jpg -------------------------------------------------------------------------------- /Extras/khx2dae/SimpleLoadDemo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/khx2dae/SimpleLoadDemo.patch -------------------------------------------------------------------------------- /Extras/khx2dae/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/khx2dae/readme.txt -------------------------------------------------------------------------------- /Extras/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/premake4.lua -------------------------------------------------------------------------------- /Extras/sph/READ_ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/READ_ME.txt -------------------------------------------------------------------------------- /Extras/sph/cmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/cmp.sh -------------------------------------------------------------------------------- /Extras/sph/common/GLee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/GLee.c -------------------------------------------------------------------------------- /Extras/sph/common/GLee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/GLee.h -------------------------------------------------------------------------------- /Extras/sph/common/common_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/common_defs.h -------------------------------------------------------------------------------- /Extras/sph/common/geomx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/geomx.cpp -------------------------------------------------------------------------------- /Extras/sph/common/geomx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/geomx.h -------------------------------------------------------------------------------- /Extras/sph/common/gl_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/gl_helper.cpp -------------------------------------------------------------------------------- /Extras/sph/common/gl_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/gl_helper.h -------------------------------------------------------------------------------- /Extras/sph/common/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/glext.h -------------------------------------------------------------------------------- /Extras/sph/common/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/glut.h -------------------------------------------------------------------------------- /Extras/sph/common/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/image.cpp -------------------------------------------------------------------------------- /Extras/sph/common/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/image.h -------------------------------------------------------------------------------- /Extras/sph/common/matrix-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/matrix-inline.h -------------------------------------------------------------------------------- /Extras/sph/common/matrix.cci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/matrix.cci -------------------------------------------------------------------------------- /Extras/sph/common/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/matrix.cpp -------------------------------------------------------------------------------- /Extras/sph/common/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/matrix.h -------------------------------------------------------------------------------- /Extras/sph/common/mdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/mdebug.cpp -------------------------------------------------------------------------------- /Extras/sph/common/mdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/mdebug.h -------------------------------------------------------------------------------- /Extras/sph/common/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/mesh.cpp -------------------------------------------------------------------------------- /Extras/sph/common/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/mesh.h -------------------------------------------------------------------------------- /Extras/sph/common/mesh_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/mesh_info.h -------------------------------------------------------------------------------- /Extras/sph/common/mtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/mtime.cpp -------------------------------------------------------------------------------- /Extras/sph/common/mtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/mtime.h -------------------------------------------------------------------------------- /Extras/sph/common/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/particle.cpp -------------------------------------------------------------------------------- /Extras/sph/common/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/particle.h -------------------------------------------------------------------------------- /Extras/sph/common/point_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/point_set.cpp -------------------------------------------------------------------------------- /Extras/sph/common/point_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/point_set.h -------------------------------------------------------------------------------- /Extras/sph/common/vector-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/vector-inline.h -------------------------------------------------------------------------------- /Extras/sph/common/vector.cci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/vector.cci -------------------------------------------------------------------------------- /Extras/sph/common/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/vector.cpp -------------------------------------------------------------------------------- /Extras/sph/common/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/common/vector.h -------------------------------------------------------------------------------- /Extras/sph/fluid_system_host.linkinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluid_system_host.linkinfo -------------------------------------------------------------------------------- /Extras/sph/fluids.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids.vcproj -------------------------------------------------------------------------------- /Extras/sph/fluids/fluid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids/fluid.cpp -------------------------------------------------------------------------------- /Extras/sph/fluids/fluid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids/fluid.h -------------------------------------------------------------------------------- /Extras/sph/fluids/fluid_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids/fluid_system.cpp -------------------------------------------------------------------------------- /Extras/sph/fluids/fluid_system.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids/fluid_system.cu -------------------------------------------------------------------------------- /Extras/sph/fluids/fluid_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids/fluid_system.h -------------------------------------------------------------------------------- /Extras/sph/fluids/fluid_system_host.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids/fluid_system_host.cu -------------------------------------------------------------------------------- /Extras/sph/fluids/fluid_system_host.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids/fluid_system_host.cuh -------------------------------------------------------------------------------- /Extras/sph/fluids/fluid_system_kern.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids/fluid_system_kern.cu -------------------------------------------------------------------------------- /Extras/sph/fluids/fluid_system_kern.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids/fluid_system_kern.cuh -------------------------------------------------------------------------------- /Extras/sph/fluids/radixsort.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids/radixsort.cu -------------------------------------------------------------------------------- /Extras/sph/fluids/radixsort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids/radixsort.cuh -------------------------------------------------------------------------------- /Extras/sph/fluids/radixsort_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids/radixsort_kernel.cu -------------------------------------------------------------------------------- /Extras/sph/fluids_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids_2005.sln -------------------------------------------------------------------------------- /Extras/sph/fluids_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/fluids_2005.vcproj -------------------------------------------------------------------------------- /Extras/sph/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Extras/sph/main.cpp -------------------------------------------------------------------------------- /GLUT32.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/GLUT32.DLL -------------------------------------------------------------------------------- /Glut/EmptyGL/GL/egl_cpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/EmptyGL/GL/egl_cpx.h -------------------------------------------------------------------------------- /Glut/EmptyGL/GL/egl_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/EmptyGL/GL/egl_defs.h -------------------------------------------------------------------------------- /Glut/EmptyGL/GL/egl_logged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/EmptyGL/GL/egl_logged.h -------------------------------------------------------------------------------- /Glut/EmptyGL/GL/egl_tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/EmptyGL/GL/egl_tokens.h -------------------------------------------------------------------------------- /Glut/EmptyGL/GL/egl_void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/EmptyGL/GL/egl_void.h -------------------------------------------------------------------------------- /Glut/EmptyGL/GL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/EmptyGL/GL/gl.h -------------------------------------------------------------------------------- /Glut/EmptyGL/GL/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/EmptyGL/GL/glu.h -------------------------------------------------------------------------------- /Glut/EmptyGL/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/EmptyGL/GL/glut.h -------------------------------------------------------------------------------- /Glut/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/GL/glew.h -------------------------------------------------------------------------------- /Glut/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/GL/glext.h -------------------------------------------------------------------------------- /Glut/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/GL/glut.h -------------------------------------------------------------------------------- /Glut/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/GL/glxew.h -------------------------------------------------------------------------------- /Glut/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/GL/glxext.h -------------------------------------------------------------------------------- /Glut/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/GL/wglew.h -------------------------------------------------------------------------------- /Glut/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/GL/wglext.h -------------------------------------------------------------------------------- /Glut/btGlutInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/btGlutInclude.h -------------------------------------------------------------------------------- /Glut/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/glew32s.lib -------------------------------------------------------------------------------- /Glut/glew64s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/glew64s.lib -------------------------------------------------------------------------------- /Glut/glut32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/glut32.lib -------------------------------------------------------------------------------- /Glut/glut64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Glut/glut64.lib -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/RELEASING.TXT -------------------------------------------------------------------------------- /Test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Info.plist -------------------------------------------------------------------------------- /Test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/README.txt -------------------------------------------------------------------------------- /Test/Source/TestList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/TestList.cpp -------------------------------------------------------------------------------- /Test/Source/TestList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/TestList.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3getRot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3getRot.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3getRot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3getRot.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3mulM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3mulM.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3mulM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3mulM.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3mulM1M2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3mulM1M2.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3mulM1M2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3mulM1M2.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3mulMV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3mulMV.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3mulMV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3mulMV.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3mulVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3mulVM.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3mulVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3mulVM.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3setRot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3setRot.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3setRot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3setRot.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3timesTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3timesTranspose.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3transpose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3transpose.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3transpose.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_3x3transposeTimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_3x3transposeTimes.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_btDbvt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_btDbvt.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_btDbvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_btDbvt.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_dot3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_dot3.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_dot3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_dot3.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_maxdot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_maxdot.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_maxdot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_maxdot.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_mindot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_mindot.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_mindot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_mindot.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_qtdot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_qtdot.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_qtdot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_qtdot.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_qtmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_qtmul.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_qtmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_qtmul.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_qtmulQV3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_qtmulQV3.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_qtmulQV3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_qtmulQV3.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_qtmulV3Q.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_qtmulV3Q.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_qtmulV3Q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_qtmulV3Q.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_qtnorm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_qtnorm.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_qtnorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_qtnorm.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_quat_aos_neon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_quat_aos_neon.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_quat_aos_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_quat_aos_neon.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3cross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3cross.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3cross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3cross.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3div.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3div.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3dot.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3dot.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3interp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3interp.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3interp.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3lerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3lerp.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3lerp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3lerp.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3norm.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3norm.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3rotate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3rotate.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3rotate.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3sdiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3sdiv.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3sdiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3sdiv.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3skew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3skew.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3skew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3skew.h -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3triple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3triple.cpp -------------------------------------------------------------------------------- /Test/Source/Tests/Test_v3triple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Tests/Test_v3triple.h -------------------------------------------------------------------------------- /Test/Source/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Utils.cpp -------------------------------------------------------------------------------- /Test/Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/Utils.h -------------------------------------------------------------------------------- /Test/Source/btIntDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/btIntDefines.h -------------------------------------------------------------------------------- /Test/Source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/main.cpp -------------------------------------------------------------------------------- /Test/Source/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/main.h -------------------------------------------------------------------------------- /Test/Source/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/Source/vector.h -------------------------------------------------------------------------------- /Test/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/Test/premake4.lua -------------------------------------------------------------------------------- /UnitTests/BulletUnitTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/BulletUnitTests/CMakeLists.txt -------------------------------------------------------------------------------- /UnitTests/BulletUnitTests/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/BulletUnitTests/Main.cpp -------------------------------------------------------------------------------- /UnitTests/BulletUnitTests/TestBulletOnly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/BulletUnitTests/TestBulletOnly.h -------------------------------------------------------------------------------- /UnitTests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS( cppunit BulletUnitTests) 3 | -------------------------------------------------------------------------------- /UnitTests/cppunit/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/cppunit/AUTHORS -------------------------------------------------------------------------------- /UnitTests/cppunit/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/cppunit/BUGS -------------------------------------------------------------------------------- /UnitTests/cppunit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/cppunit/CMakeLists.txt -------------------------------------------------------------------------------- /UnitTests/cppunit/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/cppunit/ChangeLog -------------------------------------------------------------------------------- /UnitTests/cppunit/CodingGuideLines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/cppunit/CodingGuideLines.txt -------------------------------------------------------------------------------- /UnitTests/cppunit/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/cppunit/THANKS -------------------------------------------------------------------------------- /UnitTests/cppunit/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/cppunit/TODO -------------------------------------------------------------------------------- /UnitTests/cppunit/include/cppunit/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/cppunit/include/cppunit/Test.h -------------------------------------------------------------------------------- /UnitTests/cppunit/src/cppunit/DllMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/cppunit/src/cppunit/DllMain.cpp -------------------------------------------------------------------------------- /UnitTests/cppunit/src/cppunit/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/cppunit/src/cppunit/Message.cpp -------------------------------------------------------------------------------- /UnitTests/cppunit/src/cppunit/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/UnitTests/cppunit/src/cppunit/Test.cpp -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.81 2 | -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/autogen.sh -------------------------------------------------------------------------------- /autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/autom4te.cache/output.0 -------------------------------------------------------------------------------- /autom4te.cache/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/autom4te.cache/output.1 -------------------------------------------------------------------------------- /autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/autom4te.cache/requests -------------------------------------------------------------------------------- /autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /autom4te.cache/traces.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/autom4te.cache/traces.1 -------------------------------------------------------------------------------- /bullet.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/bullet.pc.cmake -------------------------------------------------------------------------------- /bullet.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/bullet.pc.in -------------------------------------------------------------------------------- /bullet_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/bullet_logo.png -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/configure.ac -------------------------------------------------------------------------------- /convex0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/convex0.bin -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/depcomp -------------------------------------------------------------------------------- /docs/BulletQuickstart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/docs/BulletQuickstart.pdf -------------------------------------------------------------------------------- /docs/BulletQuickstart.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/docs/BulletQuickstart.tex -------------------------------------------------------------------------------- /docs/building.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/docs/building.tex -------------------------------------------------------------------------------- /docs/bullet_logo_2010_9.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/docs/bullet_logo_2010_9.eps -------------------------------------------------------------------------------- /docs/faq.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/docs/faq.tex -------------------------------------------------------------------------------- /docs/helloworld.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/docs/helloworld.tex -------------------------------------------------------------------------------- /docs/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/docs/intro.tex -------------------------------------------------------------------------------- /docs/titlepic.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/docs/titlepic.sty -------------------------------------------------------------------------------- /file.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/file.obj -------------------------------------------------------------------------------- /glut64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/glut64.dll -------------------------------------------------------------------------------- /heightfield128x128.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/heightfield128x128.raw -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/install-sh -------------------------------------------------------------------------------- /jenga.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/jenga.dae -------------------------------------------------------------------------------- /lib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/lib/readme.txt -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/ltmain.sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/missing -------------------------------------------------------------------------------- /src/Bullet-C-Api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/Bullet-C-Api.h -------------------------------------------------------------------------------- /src/BulletCollision/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletCollision/CMakeLists.txt -------------------------------------------------------------------------------- /src/BulletCollision/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletCollision/Doxyfile -------------------------------------------------------------------------------- /src/BulletCollision/Gimpact/gim_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletCollision/Gimpact/gim_array.h -------------------------------------------------------------------------------- /src/BulletCollision/Gimpact/gim_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletCollision/Gimpact/gim_bitset.h -------------------------------------------------------------------------------- /src/BulletCollision/Gimpact/gim_box_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletCollision/Gimpact/gim_box_set.h -------------------------------------------------------------------------------- /src/BulletCollision/Gimpact/gim_contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletCollision/Gimpact/gim_contact.h -------------------------------------------------------------------------------- /src/BulletCollision/Gimpact/gim_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletCollision/Gimpact/gim_math.h -------------------------------------------------------------------------------- /src/BulletCollision/Gimpact/gim_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletCollision/Gimpact/gim_memory.h -------------------------------------------------------------------------------- /src/BulletCollision/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletCollision/premake4.lua -------------------------------------------------------------------------------- /src/BulletDynamics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletDynamics/CMakeLists.txt -------------------------------------------------------------------------------- /src/BulletDynamics/Dynamics/btRigidBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletDynamics/Dynamics/btRigidBody.h -------------------------------------------------------------------------------- /src/BulletDynamics/Vehicle/btWheelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletDynamics/Vehicle/btWheelInfo.h -------------------------------------------------------------------------------- /src/BulletDynamics/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletDynamics/premake4.lua -------------------------------------------------------------------------------- /src/BulletMultiThreaded/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletMultiThreaded/CMakeLists.txt -------------------------------------------------------------------------------- /src/BulletMultiThreaded/HeapManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletMultiThreaded/HeapManager.h -------------------------------------------------------------------------------- /src/BulletMultiThreaded/PpuAddressSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletMultiThreaded/PpuAddressSpace.h -------------------------------------------------------------------------------- /src/BulletMultiThreaded/SpuDoubleBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletMultiThreaded/SpuDoubleBuffer.h -------------------------------------------------------------------------------- /src/BulletMultiThreaded/SpuFakeDma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletMultiThreaded/SpuFakeDma.cpp -------------------------------------------------------------------------------- /src/BulletMultiThreaded/SpuFakeDma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletMultiThreaded/SpuFakeDma.h -------------------------------------------------------------------------------- /src/BulletMultiThreaded/SpuNarrowPhaseCollisionTask/readme.txt: -------------------------------------------------------------------------------- 1 | Empty placeholder for future Libspe2 SPU task 2 | -------------------------------------------------------------------------------- /src/BulletMultiThreaded/SpuSampleTask/readme.txt: -------------------------------------------------------------------------------- 1 | Empty placeholder for future Libspe2 SPU task 2 | -------------------------------------------------------------------------------- /src/BulletMultiThreaded/SpuSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletMultiThreaded/SpuSync.h -------------------------------------------------------------------------------- /src/BulletMultiThreaded/TrbDynBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletMultiThreaded/TrbDynBody.h -------------------------------------------------------------------------------- /src/BulletMultiThreaded/TrbStateVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletMultiThreaded/TrbStateVec.h -------------------------------------------------------------------------------- /src/BulletMultiThreaded/btGpuDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletMultiThreaded/btGpuDefines.h -------------------------------------------------------------------------------- /src/BulletSoftBody/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletSoftBody/CMakeLists.txt -------------------------------------------------------------------------------- /src/BulletSoftBody/btSoftBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletSoftBody/btSoftBody.cpp -------------------------------------------------------------------------------- /src/BulletSoftBody/btSoftBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletSoftBody/btSoftBody.h -------------------------------------------------------------------------------- /src/BulletSoftBody/btSoftBodyData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletSoftBody/btSoftBodyData.h -------------------------------------------------------------------------------- /src/BulletSoftBody/btSoftBodyHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletSoftBody/btSoftBodyHelpers.cpp -------------------------------------------------------------------------------- /src/BulletSoftBody/btSoftBodyHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletSoftBody/btSoftBodyHelpers.h -------------------------------------------------------------------------------- /src/BulletSoftBody/btSoftBodyInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletSoftBody/btSoftBodyInternals.h -------------------------------------------------------------------------------- /src/BulletSoftBody/btSoftBodySolvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletSoftBody/btSoftBodySolvers.h -------------------------------------------------------------------------------- /src/BulletSoftBody/btSparseSDF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletSoftBody/btSparseSDF.h -------------------------------------------------------------------------------- /src/BulletSoftBody/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/BulletSoftBody/premake4.lua -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/LinearMath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/CMakeLists.txt -------------------------------------------------------------------------------- /src/LinearMath/btAabbUtil2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btAabbUtil2.h -------------------------------------------------------------------------------- /src/LinearMath/btAlignedAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btAlignedAllocator.cpp -------------------------------------------------------------------------------- /src/LinearMath/btAlignedAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btAlignedAllocator.h -------------------------------------------------------------------------------- /src/LinearMath/btAlignedObjectArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btAlignedObjectArray.h -------------------------------------------------------------------------------- /src/LinearMath/btConvexHull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btConvexHull.cpp -------------------------------------------------------------------------------- /src/LinearMath/btConvexHull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btConvexHull.h -------------------------------------------------------------------------------- /src/LinearMath/btConvexHullComputer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btConvexHullComputer.cpp -------------------------------------------------------------------------------- /src/LinearMath/btConvexHullComputer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btConvexHullComputer.h -------------------------------------------------------------------------------- /src/LinearMath/btDefaultMotionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btDefaultMotionState.h -------------------------------------------------------------------------------- /src/LinearMath/btGeometryUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btGeometryUtil.cpp -------------------------------------------------------------------------------- /src/LinearMath/btGeometryUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btGeometryUtil.h -------------------------------------------------------------------------------- /src/LinearMath/btGrahamScan2dConvexHull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btGrahamScan2dConvexHull.h -------------------------------------------------------------------------------- /src/LinearMath/btHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btHashMap.h -------------------------------------------------------------------------------- /src/LinearMath/btIDebugDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btIDebugDraw.h -------------------------------------------------------------------------------- /src/LinearMath/btList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btList.h -------------------------------------------------------------------------------- /src/LinearMath/btMatrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btMatrix3x3.h -------------------------------------------------------------------------------- /src/LinearMath/btMinMax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btMinMax.h -------------------------------------------------------------------------------- /src/LinearMath/btMotionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btMotionState.h -------------------------------------------------------------------------------- /src/LinearMath/btPolarDecomposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btPolarDecomposition.cpp -------------------------------------------------------------------------------- /src/LinearMath/btPolarDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btPolarDecomposition.h -------------------------------------------------------------------------------- /src/LinearMath/btPoolAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btPoolAllocator.h -------------------------------------------------------------------------------- /src/LinearMath/btQuadWord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btQuadWord.h -------------------------------------------------------------------------------- /src/LinearMath/btQuaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btQuaternion.h -------------------------------------------------------------------------------- /src/LinearMath/btQuickprof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btQuickprof.cpp -------------------------------------------------------------------------------- /src/LinearMath/btQuickprof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btQuickprof.h -------------------------------------------------------------------------------- /src/LinearMath/btRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btRandom.h -------------------------------------------------------------------------------- /src/LinearMath/btScalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btScalar.h -------------------------------------------------------------------------------- /src/LinearMath/btSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btSerializer.cpp -------------------------------------------------------------------------------- /src/LinearMath/btSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btSerializer.h -------------------------------------------------------------------------------- /src/LinearMath/btStackAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btStackAlloc.h -------------------------------------------------------------------------------- /src/LinearMath/btTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btTransform.h -------------------------------------------------------------------------------- /src/LinearMath/btTransformUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btTransformUtil.h -------------------------------------------------------------------------------- /src/LinearMath/btVector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btVector3.cpp -------------------------------------------------------------------------------- /src/LinearMath/btVector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/btVector3.h -------------------------------------------------------------------------------- /src/LinearMath/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/LinearMath/premake4.lua -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/MiniCL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/MiniCL/CMakeLists.txt -------------------------------------------------------------------------------- /src/MiniCL/MiniCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/MiniCL/MiniCL.cpp -------------------------------------------------------------------------------- /src/MiniCL/MiniCLTask/MiniCLTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/MiniCL/MiniCLTask/MiniCLTask.cpp -------------------------------------------------------------------------------- /src/MiniCL/MiniCLTask/MiniCLTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/MiniCL/MiniCLTask/MiniCLTask.h -------------------------------------------------------------------------------- /src/MiniCL/MiniCLTaskScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/MiniCL/MiniCLTaskScheduler.cpp -------------------------------------------------------------------------------- /src/MiniCL/MiniCLTaskScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/MiniCL/MiniCLTaskScheduler.h -------------------------------------------------------------------------------- /src/MiniCL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/MiniCL/cl.h -------------------------------------------------------------------------------- /src/MiniCL/cl_MiniCL_Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/MiniCL/cl_MiniCL_Defs.h -------------------------------------------------------------------------------- /src/MiniCL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/MiniCL/cl_gl.h -------------------------------------------------------------------------------- /src/MiniCL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/MiniCL/cl_platform.h -------------------------------------------------------------------------------- /src/btBulletCollisionCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/btBulletCollisionCommon.h -------------------------------------------------------------------------------- /src/btBulletDynamicsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/btBulletDynamicsCommon.h -------------------------------------------------------------------------------- /src/vectormath/neon/boolInVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/neon/boolInVec.h -------------------------------------------------------------------------------- /src/vectormath/neon/floatInVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/neon/floatInVec.h -------------------------------------------------------------------------------- /src/vectormath/neon/mat_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/neon/mat_aos.h -------------------------------------------------------------------------------- /src/vectormath/neon/quat_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/neon/quat_aos.h -------------------------------------------------------------------------------- /src/vectormath/neon/vec_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/neon/vec_aos.h -------------------------------------------------------------------------------- /src/vectormath/neon/vectormath_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/neon/vectormath_aos.h -------------------------------------------------------------------------------- /src/vectormath/scalar/boolInVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/scalar/boolInVec.h -------------------------------------------------------------------------------- /src/vectormath/scalar/floatInVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/scalar/floatInVec.h -------------------------------------------------------------------------------- /src/vectormath/scalar/mat_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/scalar/mat_aos.h -------------------------------------------------------------------------------- /src/vectormath/scalar/quat_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/scalar/quat_aos.h -------------------------------------------------------------------------------- /src/vectormath/scalar/vec_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/scalar/vec_aos.h -------------------------------------------------------------------------------- /src/vectormath/scalar/vectormath_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/scalar/vectormath_aos.h -------------------------------------------------------------------------------- /src/vectormath/sse/boolInVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/sse/boolInVec.h -------------------------------------------------------------------------------- /src/vectormath/sse/floatInVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/sse/floatInVec.h -------------------------------------------------------------------------------- /src/vectormath/sse/mat_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/sse/mat_aos.h -------------------------------------------------------------------------------- /src/vectormath/sse/quat_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/sse/quat_aos.h -------------------------------------------------------------------------------- /src/vectormath/sse/vec_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/sse/vec_aos.h -------------------------------------------------------------------------------- /src/vectormath/sse/vecidx_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/sse/vecidx_aos.h -------------------------------------------------------------------------------- /src/vectormath/sse/vectormath_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/sse/vectormath_aos.h -------------------------------------------------------------------------------- /src/vectormath/vmInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/src/vectormath/vmInclude.h -------------------------------------------------------------------------------- /test1.oec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaningtech/cheerp-bullet/HEAD/test1.oec --------------------------------------------------------------------------------