├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md └── VelocityRaptor ├── CMakeLists.txt ├── include ├── velocityraptor.h ├── vr.h ├── vrArray.h ├── vrBlockAllocator.h ├── vrBoundingBox.h ├── vrBroadphase.h ├── vrCollision.h ├── vrColor.h ├── vrDistanceJoint.h ├── vrHashMap.h ├── vrJoint.h ├── vrManifold.h ├── vrMarchingSquares.h ├── vrMath.h ├── vrMemoryPool.h ├── vrParticle.h ├── vrParticleSystem.h ├── vrRaycast.h ├── vrRevoluteJoint.h ├── vrRigidBody.h ├── vrShape.h ├── vrShapeCreate.h ├── vrStep.h ├── vrTriangulation.h ├── vrTypes.h └── vrWorld.h └── src ├── main.c ├── vrArray.c ├── vrBlockAllocator.c ├── vrBoundingBox.c ├── vrBroadphase.c ├── vrCollision.c ├── vrColor.c ├── vrDistanceJoint.c ├── vrHashMap.c ├── vrJoint.c ├── vrManifold.c ├── vrMarchingSquares.c ├── vrMath.c ├── vrMemoryPool.c ├── vrParticle.c ├── vrParticleSystem.c ├── vrRaycast.c ├── vrRevoluteJoint.c ├── vrRigidBody.c ├── vrShape.c ├── vrShapeCreate.c ├── vrStep.c ├── vrTriangulation.c └── vrWorld.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/README.md -------------------------------------------------------------------------------- /VelocityRaptor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/CMakeLists.txt -------------------------------------------------------------------------------- /VelocityRaptor/include/velocityraptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/velocityraptor.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vr.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrArray.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrBlockAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrBlockAllocator.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrBoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrBoundingBox.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrBroadphase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrBroadphase.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrCollision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrCollision.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrColor.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrDistanceJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrDistanceJoint.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrHashMap.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrJoint.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrManifold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrManifold.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrMarchingSquares.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrMarchingSquares.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrMath.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrMemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrMemoryPool.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrParticle.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrParticleSystem.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrRaycast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrRaycast.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrRevoluteJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrRevoluteJoint.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrRigidBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrRigidBody.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrShape.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrShapeCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrShapeCreate.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrStep.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrTriangulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrTriangulation.h -------------------------------------------------------------------------------- /VelocityRaptor/include/vrTypes.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VelocityRaptor/include/vrWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/include/vrWorld.h -------------------------------------------------------------------------------- /VelocityRaptor/src/main.c: -------------------------------------------------------------------------------- 1 | /* 2 | Ignore this useless file. 3 | 4 | 5 | :D 6 | */ -------------------------------------------------------------------------------- /VelocityRaptor/src/vrArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrArray.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrBlockAllocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrBlockAllocator.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrBoundingBox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrBoundingBox.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrBroadphase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrBroadphase.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrCollision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrCollision.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrColor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrColor.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrDistanceJoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrDistanceJoint.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrHashMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrHashMap.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrJoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrJoint.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrManifold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrManifold.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrMarchingSquares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrMarchingSquares.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrMath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrMath.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrMemoryPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrMemoryPool.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrParticle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrParticle.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrParticleSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrParticleSystem.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrRaycast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrRaycast.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrRevoluteJoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrRevoluteJoint.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrRigidBody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrRigidBody.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrShape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrShape.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrShapeCreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrShapeCreate.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrStep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrStep.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrTriangulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrTriangulation.c -------------------------------------------------------------------------------- /VelocityRaptor/src/vrWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mithreindeir/VelocityRaptor/HEAD/VelocityRaptor/src/vrWorld.c --------------------------------------------------------------------------------