reactphysics3d/CHANGELOG.md

19 KiB

Changelog

Version 0.8.0 (May 31, 2020)

Note that this release contains some public API changes. Please read carefully the following changes before upgrading to this new version and do not hesitate to take a look at the user manual.

Added

  • It is now possible to change the size of a BoxShape using the BoxShape::setHalfExtents() method
  • It is now possible to change the radius of a SphereShape using the SphereShape::setRadius() method
  • It is now possible to change the height and radius of a CapsuleShape using the CapsuleShape::setHeight() and CapsuleShape::setRadius() methods
  • It is now possible to change the scale of a ConvexMeshShape using the ConvexMeshShape::setScale() method
  • It is now possible to change the scale of a ConcaveMeshShape using the ConcaveMeshShape::setScale() method
  • It is now possible to change the scale of a HeightFieldShape using the HeightFieldShape::setScale() method
  • A method PhysicsWorld::getCollisionBody(uint index) has been added on a physics world to retrieve a given CollisionBody
  • A method PhysicsWorld::getRigidBody(uint index) has been added on a physics world to retrieve a given RigidBody
  • A RigidBody::getLocalCenterOfMass() method has been added to retrieve the current local-space center of mass of a rigid body
  • Add PhysicsCommon class that needs to be instanciated at the beginning and is used as a factory for other objects of the library (see the user manual)
  • The RigidBody::updateLocalCenterOfMassFromColliders() method has been added to compute and set the center of mass of a body using its colliders
  • The RigidBody::updateLocalInertiaTensorFromColliders() method has been added to compute and set the local inertia tensor of a body using its colliders - The RigidBody::getLocalInertiaTensor() method has been added to retrieve the local-space inertia tensor of a rigid body
  • The RigidBody::updateMassFromColliders() method has been added to compute and set the mass of a body using its colliders
  • A Material nows has a mass density parameter that can be set using the Material::setMassDensity() method. The mass density is used to compute the mass of a collider when computing the mass of a rigid body
  • A Collider can now be a trigger. This collider will be used to only report collisions with another collider but no collision response will be applied. You can use the Collider::setIsTrigger() method for this.
  • The EventListener class now has a onTrigger() method that is called when a trigger collider is colling with another collider
  • In the EventListener, the onContact() and onTrigger() method now reports the type of event (start, stay, exit) for each contact. This way the user can know whether it's a new contact or not or when two colliders are not in contact anymore
  • A DebugRenderer class has been added in order to display debug info (colliders, AABBs, contacts, ...) in your simulation using graphics primitives (lines, triangles).
  • A RigidBody::applyForceAtLocalPosition() method has been added to apply a force at a given position of the rigid body in local-space
  • A default logger can be instanciated using the PhysicsCommon::createDefaultLogger() method
  • The CMakeLists.txt file of the library has been refactored to use modern CMake. The targets are now exported when you install the library so that you can import the library with the find_package(ReactPhysics3D) function in your own CMakeLists.txt file
  • A Hello World project has been added to show a very simple project that shows how to compile and use the ReactPhysics3D library

Fixed

  • Issues #125 and #106 with CMake install of the library have been fixed
  • Issue #141 with limits of hinge and slider joints has been fixed
  • Issue #117 in documentation has been fixed
  • Issue #131 in documentation has been fixed
  • Issue #139 in API documentation has been fixed
  • Issue #122 in logger has been fixed

Changed

  • The CollisionWorld::testCollision() methods do not have the 'categoryMaskBits' parameter anymore
  • The CollisionWorld::testOverlap() methods do not have the 'categoryMaskBits' parameter anymore
  • Many methods in the EventListener class have changed. Check the user manual for more information
  • The way to retrieve contacts has changed. Check the user manual for more information
  • DynamicsWorld and CollisionWorld classes have been merged into a single class called PhysicsWorld
  • The ProxyShape class has been renamed into Collider
  • The Material is now part of the Collider instead of the RigidBody. Therefore, it is now possible to have a RigidBody with multiple colliders and a different material for each Collider
  • The Logger has to be set using the PhysicsCommon::setLogger() method
  • The Box::getExtent() method has been renamed to Box::getHalfExtents()
  • An instance of the BoxShape class cannot be instanciated directly anymore. You need to use the PhysicsCommon::createBoxShape() method
  • An instance of the SphereShape class cannot be instanciated directly anymore. You need to use the PhysicsCommon::createSphereShape() method
  • An instance of the CapsuleShape class cannot be instanciated directly anymore. You need to use the PhysicsCommon::createCapsuleShape() method
  • An instance of the ConvexMeshShape class cannot be instanciated directly anymore. You need to use the PhysicsCommon::createConvexMeshShape() method
  • An instance of the HeightFieldShape class cannot be instanciated directly anymore. You need to use the PhysicsCommon::createHeightFieldShape() method
  • An instance of the ConcaveMeshShape class cannot be instanciated directly anymore. You need to use the PhysicsCommon::createConcaveMeshShape() method
  • An instance of the PolyhedronMesh class cannot be instanciated directly anymore. You need to use the PhysicsCommon::createPolyhedronMesh() method
  • An instance of the TriangleMesh class cannot be instanciated directly anymore. You need to use the PhysicsCommon::createTriangleMesh() method
  • The ProxyShape class has been renamed to Collider. The CollisionBody::addCollider(), RigidBody::addCollider() methods have to be used to create and add a collider to a body. Then methods CollisionBody::removeCollider(), RigidBody::removeCollider() need to be used to remove a collider from a body.
  • The RigidBody::addCollider() method (previously addProxyShape() method) does not take a "mass" parameter anymore - The RigidBody::setCenterOfMassLocal() method has been renamed to RigidBody::setLocalCenterOfMass() - The RigidBody::setInertiaTensorLocal() method has been renamed to RigidBody::setLocalInertiaTensor()
  • Now, the local inertia tensor of a rigid body has to be set using a Vector3 instead of a Matrix3x3. You only need to provide the three diagonal values of the matrix
  • The RigidBody::recomputeMassInformation() method has been renamed to RigidBody::updateMassPropertiesFromColliders.
  • Now, you need to manually call the RigidBody::updateMassPropertiesFromColliders() method after adding colliders to a rigid body to recompute its inertia tensor, center of mass and mass. There are other methods that you can use form that (see the user manual)
  • The RigidBody::applyForce() method has been renamed to RigidBody::applyForceAtWorldPosition()
  • The rendering in the testbed application has been improved
  • Many of the data inside the library have been refactored for better caching and easier parallelization in the future
  • The old Logger class has been renamed to DefaultLogger
  • The Logger class is now an abstract class that you can inherit from in order to receive log events from the library
  • User manual and API documentation have been updated

Removed

  • The method DynamicsWorld::getContactsList() has been removed. You need to use the EventListener class to retrieve contacts now (see the user manual).
  • The DynamicsWorld::getNbJoints() method has been removed.
  • The EventListener::beginInternalTick() method has been removed (because internal ticks do not exist anymore).
  • The EventListener::endInternalTick() method has been removed (because internal ticks do not exist anymore).
  • The RigidBody::getJointsList() method has been removed.
  • It is not possible anymore to set custom pool and stack frame allocators. Only the base allocator can be customized when creating a PhysicsCommon instance.
  • The RigidBody::setInverseInertiaTensorLocal() method has been removed. The RigidBody::setInertiaTensorLocal() has to be used instead.
  • The RigidBody::getInverseInertiaTensorWorld() method has been removed.
  • The Collider::getMass() method has been removed.

Version 0.7.1 (July 01, 2019)

Added

  • Make possible for the user to get vertices, normals and triangle indices of a ConcaveMeshShape
  • Make possible for the user to get vertices and height values of the HeightFieldShape

Fixed

  • Bug #45 has been fixed.
  • Bug #50 has been fixed.
  • Bug #52 has been fixed.
  • Bug #53 has been fixed.
  • Bug #54 has been fixed.
  • Bug #55 has been fixed.
  • Bug #51 has been fixed.
  • Bug #60 has been fixed.
  • Bug #57 has been fixed.
  • Bug #37 has been fixed.
  • Bug #62 has been fixed.
  • Bug #63 has been fixed.
  • Bug #82 has been fixed.
  • Bug #85 has been fixed.
  • Bug #79 has been fixed.
  • Bug: the free() method was called in PoolAllocator instead of release() method of base allocator.

Removed

  • The CollisionWorld::setCollisionDispatch() method has been removed. In order to use a custom collision algorithm, you must not get the collision dispatch object with the CollisionWorld::getCollisionDispatch() method and set a collision algorithm to this object.
  • The methods CollisionBody::getProxyShapesList() has been remove. You can now use the CollisionBody::getNbProxyShapes() method to know the number of proxy-shapes of a body and the CollisionBody::getProxyShape(uint proxyShapeIndex) method to get a given proxy-shape of the body.
  • The CollisionWorld::testAABBOverlap() methods have been removed.

Version 0.7.0 (May 1, 2018)

Added

  • Dedicated Sphere vs Capsule collision detection algorithm.
  • Dedicated Capsule vs Capsule collision detection algorithm.
  • Allow a Rigid Body to have zero mass (for static bodies for instance).
  • Add single frame memory allocator for faster memory allocation in a frame.
  • Make possible to have a profiler per DynamicsWorld instead of a unique one.
  • Make possible to use your own allocation/deallocation methods instead of default malloc/free
  • Make possible to display the AABB of the bodies in the testbed application.
  • Add RigidBody::setInverseLocalInertiaTensor() method to directly set the inverse inertia tensor of a rigid body.
  • More unit tests have been added

Changed

  • Use single-shot contact manifold computation instead of incremental across several frames.
  • Replace the EPA narrow-phase collision detection with SAT algorithm.
  • The collision detection is now faster and more robust.
  • Code has been refactored such that we do not use STL containers anymore.
  • The way to create a ConvexMeshShape has changed (see the user manual)
  • The vertex indices stride has changed in the TriangleVertexArray for ConvexMeshShape (see the API documentation)
  • The raycasting of a ConvexMeshShape does not use GJK algorithm anymore.
  • The test do detect if a point is inside of a ConvexMeshShape does not use GJK algorithm anymore.
  • A lot of optimizations have been performed and the library is now faster.
  • Release code is now compiled with -O2 compiler optimization level (instead of none)
  • Documentation has been updated

Removed

  • Quaternion constructor with Euler angles has been removed. The Quaternion::fromEulerAngles() method should be used instead.
  • Cylinder and Cone collision shapes have been removed. The ConvexMeshShape collision shape should be used instead.
  • The ProxyShape::setLocalScaling() method has been removed. The ConvexMeshShape, ConcaveMeshShape and HeightFieldShape collision shapes can be scaled directly.

Fixed

  • Issues with checkboxes in testbed application were fixed.
  • Fix issue with wrong AABB computation that can cause missing collision in broad-phase
  • Bug #26 has been fixed.
  • Bug #30 has been fixed.
  • Bug #32 has been fixed.
  • Issue #31 has been fixed.
  • Issue #34 has been fixed.
  • Issue #37 has been fixed.

Version 0.6.0 (April 15, 2016)

Added

  • Support for static concave triangular mesh collision shape.
  • Support for height field collision shape.
  • Support for rolling resistance.
  • It is now possible to change the local scaling of a collision shape.
  • Add new constructor of ConvexMeshShape that accepts a triangular mesh.
  • It is now easier to use your own narrow-phase collision detection algorithm.
  • The CollisionWorld and DynamicsWorld now automatically destroys bodies and joints that have not been destroyed at the end.
  • New testbed application with demo scenes.

Changed

  • The DynamicsWorld::update() method now takes the time step for the next simulation step in parameter.

Version 0.5.0 (March 4, 2015)

Added

  • It is now possible to use multiple collision shapes per body.
  • Ray casting support.
  • Add methods to check if a point is inside a body or a proxy shape.
  • Add collision filtering using collision categories (with bit masks).
  • It is possible to attach user data to a body or a proxy shape.
  • It is now possible to create a quaternion using Euler angles.
  • It now possible to activate of deactivate a body.
  • Differentiation between dynamic, kinematic and static bodies.
  • Gravity can now be changed after the creation of the world.
  • The center of mass and inertia tensor of a body can be set manually (center of mass can be different from body origin).
  • Add a simulation step callback in the EventListener class that is called at each internal physics tick.
  • Add methods to transform points/vectors from/into local-space/world-space coordinates of a body.
  • Add CollisionWorld::testAABBOverlap() method to test overlap between two bodies or two proxy shapes.
  • Add a ray casting example.
  • Add unit tests for ray casting and collision detection.

Changed

  • Replace the Sweep-And-Prune algorithm by a Dynamic AABB Tree for the broad-phase collision detection.
  • The center of mass of a body is now automatically computed from its collision shapes.
  • Use GLFW instead of GLUT/Freeglut for the examples.

Fixed

  • Fix two issues in the EPA algorithm.

Version 0.4.0 (October 7, 2013)

Added

  • Add collision shapes (Capsule, Convex Mesh).
  • Add joints (Ball and Socket, Hinge, Slider, Fixed).
  • Add sleeping technique for inactive bodies.
  • Add velocity damping.
  • It is now easier to apply force and torque to a rigid body.
  • Add the EventListener class to allow the user to be notified when some events occur (contacts, …).
  • Add examples for the joints and collision shapes.
  • Make possible to modify the collision margin of some collision shapes.
  • Add a Material class to keep track of the properties of a rigid body (friction coefficient, bounciness, …).
  • Add a hierarchical real-time profiler.

Changed

  • Collision shapes now use the internal memory allocator.
  • New internal memory allocator.

Removed

  • Remove the world gravity force from the external force of rigid bodies and allow the user to disable the gravity on a given body.
  • Reduce the allocated memory of the broad-phase when several bodies are removed from the world.

Fixed

  • Fix issue in the Sweep-And-Prune broad-phase collision detection (thanks to Aleksi Sapon).
  • Fix issue in the contact solver resulting in less jittering.

Version 0.3.0

Added

  • Implementation of a dedicated collision detection algorithm for spheres against spheres instead of using GJK/EPA algorithm.
  • Make possible to use a unique instance of a collision shape for multiple rigid bodies.
  • Create the API documentation using Doxygen.
  • Add Unit tests

Changed

  • The Sweep-and-Prune broad-phase collision detection algorithm has been rewritten according to the technique described by Pierre Terdiman at http://www.codercorner.com/SAP.pdf to be much more efficient than the previous naive implementation.
  • The contact solver has been rewritten to use the Sequential Impulses technique from Erin Catto which is mathematically equivalent to the Projected Gauss Seidel technique that was used before. The Sequential Impulses technique is more intuitive.
  • Make GJK/EPA algorithm more robust for spheres.
  • Change the structure of the code for a better separation between the collision detection and the dynamics simulation code.

Version 0.2.0

Added

  • Add the GJK/EPA algorithm for convex shapes collision detection
  • Persistent contacts storing between frames
  • Add Sphere, Cylinder and Cone collision shapes
  • Add the Transform class for better handling of position and orientation of rigid bodies
  • It is now possible to approximate the inertia tensor of rigid bodies using the collision shape inertia tensor.
  • The AABB is now computed automatically using the collision shape
  • Add the MemoryPool class to avoid intense dynamic allocation during the simulation

Changed

  • Simplification of the mathematics library
  • Optimization of the constraint solver
  • ReactPhysics3D is now under the zlib license