-
Breaking Changes
- Increased required C++ standard from C++17 to C++20. (#2068)
- See Compatibility Policy for details
- Renamed
RootJointTypeenum values to PascalCase (Floating,Fixed) acrossdart::utils::SdfParser,dart::utils::UrdfParser(formerlyDartLoader), and their dartpy bindings to align with the code-style guidelines. - Renamed component meta headers to
All.hppand added thedart/all.hppumbrella header; deprecated<component>.hpp/all.hppheaders now forward toAll.hpp. (#2047, #2070, #2084, #2166) - Renamed installed C++ headers to snake_case; PascalCase compatibility wrappers are generated with deprecation warnings for legacy includes. (#2475)
- Removed all GLUT code and converted GLUT examples to OSG. (#2044)
- Renamed the OpenSceneGraph GUI component/target to
gui/dart-gui(previouslygui-osg/dart-gui-osg) and replaced theDART_BUILD_GUI_OSGtoggle withDART_BUILD_GUI. (#2209, #2257) - Renamed
DartLoadertoUrdfParserand standardized parser naming in model-loading APIs. (#2269, #2270) - Replaced the pybind11 dartpy bindings with nanobind and flattened the dartpy namespace; legacy modules and camelCase remain available with
DeprecationWarningfor DART 7.x and are slated for removal in DART 8.0 (seeDARTPY_ENABLE_LEGACY_MODULES,DARTPY_WARN_ON_LEGACY_MODULES,DARTPY_ENABLE_SNAKE_CASE,DARTPY_WARN_ON_CAMELCASE). (#2249, #2256, #2259) - Removed the legacy integration module and moved the optimizer component to
dart-optimization; optional optimizer plugins and pagmo APIs are removed. (#2201, #2204) - Removed build-mode macros from public config headers and prefixed feature macros with
DART_. (#2275, #2278) - Removed deprecated experimental example and benchmark directories.
- Removed C3D/VSK utilities, parsers, and sample data. (#2363)
- Dropped the deprecated
docker/dev/v6.15images; use the maintained v6.16 images instead.
- Increased required C++ standard from C++17 to C++20. (#2068)
-
Minimum Compiler Requirements
- Linux: GCC 11.0+
- macOS: Clang 12.0+
- Windows: MSVC 19.40+ (Visual Studio 2022)
-
Tested Platforms
- TBD (will be updated upon release)
-
Build
- Minimum C++ standard: C++20 (previously C++17). (#2068)
- Consolidated and modernized the CMake build system, including Eigen version enforcement, build-type defaults for multi-config generators, distro toggles, and corrected utils source registration. (#2060, #2107, #2216, #2177, #2314)
- Added
DART_BUILD_TESTS,DART_BUILD_EXAMPLES, andDART_BUILD_TUTORIALSto allow optionally skipping the tests/examples/tutorial targets (examples/tutorials now auto-disable ifdart-guiis not built). dart.pcnow reports the installed include directory viaCflags, improving downstreampkg-configusage without breaking relocatable installs.- Added
DART_EXAMPLES_INSTALL_PATHCMake cache variable to customize where example sources are installed or disable their installation. (#2100) - Added
libsdformatas a required dependency so that SDF files are normalized through the official parser before being handed to DART: #264 - Introduced per-target export headers (
dart/<component>/Export.hpp) that defineDART_<COMPONENT>_APImacros. Each library now controls symbol visibility independently on Windows instead of sharing the monolithicDART_API, which fixes long‑standing DLL import inconsistencies. (#2163) - Packaging and distribution updates: migrated to
pyproject.toml, switched dartpy wheel builds to pixi, added Windows wheel builds, standardized wheel cleanup, removed manylinux artifacts, and fixed thepackage.xmlversion. (#2043, #2072, #2266, #2268, #2080, #2207, #2172) - Developer workflow updates: refactored pixi tasks, tuned pixi parallelism, simplified the devcontainer, and bumped the DART version to 7.0.0. (#2083, #2208, #2255, #2046)
- Added ASan build mode and example install destination controls. (#2101, #2100)
- GUI dependency handling updates: switched ImGui to FetchContent, prefer local Vulkan loader, and removed bundled lodepng. (#2056, #2085, #2051)
- Pixi tasks and helper scripts now guard optional targets (dartpy, GUI examples) automatically, detect missing generator targets before invoking
cmake --build, and exposeDART_BUILD_*_OVERRIDEenvironment hooks so CI and local workflows can toggle bindings/apps without editingpixi.toml. - Exported
DynamicJointConstraintandJointConstrainton Windows so constraint unit tests link successfully. - Exported soft contact constraints, DART collision helpers,
computeIntersection, and IK property types on Windows to fix shared-library unit test linking. (#2462) - Added support for assimp 6.x while maintaining backward compatibility with assimp 5.x
-
Tooling and Docs
- Added AI-native documentation architecture with AGENTS.md, module-specific guides, slash commands, and command sync automation. (#2446, #2447, #2448, #2449)
- Simplified copyright headers to first publication year (REUSE compliance). (#2438)
- CI workflow optimizations, caching, and scheduling controls (including compiler cache guards). (#2055, #2079, #2135, #2160, #2165, #2192, #2313, #2129, #2265, #2267, #2180)
- CodeQL scope updates and coverage workflow fixes. (#2121, #2128, #2144, #2147, #2197, #2198)
- GitHub Actions and tooling dependency bumps. (#2049, #2050, #2063, #2064, #2065, #2074, #2075, #2076, #2102, #2103, #2200, #2264, #2344, #2345, #2346)
- Linting and formatting tasks updated (Python formatting, TOML, Markdown, RST, spelling, and Doxygen command prefix). (#2054, #2185, #2237, #2248, #2251, #2244)
- Pixi lockfile refreshes. (#2052, #2066, #2078, #2123, #2179, #2235, #2289, #2293, #2306, #2336, #2348)
- Documentation and onboarding improvements (developer guides, CI/testing workflows, IK and servo docs, RTD updates, and translations). (#2059, #2062, #2089, #2095, #2112, #2156, #2171, #2173, #2174, #2183, #2191, #2196, #2199, #2203, #2213, #2215, #2302, #2303, #2312, #2087)
- Maintenance merges and stability fixes for release branches and simulation-experimental builds. (#2145, #2188, #2301, #2341, #2357, #2223, #2228, #2236)
- Miscellaneous repo hygiene: Docker build script fixes, Dependabot path cleanup, template updates, and badge/documentation cleanup. (#2058, #2291)
-
Simulation
- Added
WorldConfigsupport for collision detector selection plus multi-solver world scaffolding and sensor integration. (#2168, #2349, #2352) - Joint and constraint enhancements: state-independent
Joint::integratePositions, per-DoF mimic actuator modes, revolute joint constraint for closed-loop hinges, WeldJoint merge, PlanarJoint SE2 helpers, and joint coordinate charts. (#2309, #2222, #2252, #2242, #2231, #2351) - Coupler and mimic updates: new coupler constraint support, Gazebo-aligned mimic constraints, and URDF transmission coupling. (#2212, #2247, #2281)
- Dynamics fixes: FreeJoint world Jacobian translation, joint impulse statefulness, Aspect lifecycle replacement, servo limit recovery, stale joint command handling, RealTimeWorldNode stall fixes, and graceful handling of invalid (negative/NaN/Inf) joint physics parameters. (#2298, #2308, #2304, #2094, #2098, #2088, #2431)
- Fixed intermittent SEGFAULT in TranslationalJoint2D on macOS ARM64 (Release mode) caused by missing
EIGEN_MAKE_ALIGNED_OPERATOR_NEWonTranslationalJoint2DUniquePropertieswhich containsEigen::Matrix<double, 3, 2>. NEON vectorized instructions require 16-byte alignment that was not guaranteed without this macro. - Fixed
TranslationalJoint2D::copy(const TranslationalJoint2D*)andUniversalJoint::copy(const UniversalJoint*)performing self-copy instead of copying from the argument. - Fixed intermittent SEGFAULT in
Icosphere::computeIcosahedron()on macOS ARM64 (Release mode) by removingstaticfrom the triangles vector, which can cause alignment issues during static initialization when using Eigen aligned allocators. - Fix assertion failure crash in JointConstraint when joint limits are invalid (lower > upper). Now emits a warning and skips limit enforcement for that DOF instead of crashing. (gz-physics#846)
- Added split impulse contact correction and clarified zero-contact handling. (#2354, #2220, #201)
- Added validation for invalid contact surface parameters (NaN/Inf/negative friction, restitution, and slip compliance) to prevent LCP solver crashes. (gazebosim/gz-physics#841)
- Fixed slip compliance validation to silently handle the -1.0 sentinel value (meaning "use default") instead of logging spurious warnings. Also use
DART_WARN_ONCEfor genuine NaN/Inf warnings to prevent log spam. (gazebosim/gz-sim#3289) - Warn and continue when LCP matrices are non-symmetric to avoid assertion failures with invalid contacts. (gz-physics#848)
- Guard against non-finite articulated body computations from zero/epsilon mass or extreme spring values. (gz-physics#849, gz-physics#850, gz-physics#851, gz-physics#854, gz-physics#856)
- Replace crash-causing
DART_ASSERTwithDART_WARN+ graceful recovery for non-finite transforms in Joint setters, BodyNode update pipeline, GenericJoint inertia propagation, and MJCF parser validation. (gz-physics#861, gz-physics#862)
- Added
-
Collision and Geometry
- Fixed PascalCase ODE compatibility headers to preserve legacy includes such as
OdeCollisionDetector.hpp. (#2475) - Validate
SphereShape::setRadius()to reject NaN, infinity, and non-positive values with a warning instead of crashing via assertion. (#2442, gz-physics#843) - Mesh and shape pipeline upgrades: convex mesh collisions/rendering, polygon mesh support, TriMesh internal representation, Collada unit scaling, aiScene ownership fixes, deep-copy shape cloning, ArrowShape material ownership, heightmap fixes, and allocator/heightmap cleanup. (#2338, #2340, #2325, #2152, #2285, #2239, #2290, #2305, #2287, #2286, #2069, #453, #872, #896, #287)
- Collision backend fixes across FCL/Bullet/ODE: contact normalization, mesh regressions, contact ordering, plane handling, phantom contact filtering, ellipsoid rolling, sphere containment, and capsule contact stabilization. (#2339, #2258, #2282, #2243, #2276, #2246, #2274, #2271, #2219, #2125, #1539, #1184)
- Collision utilities and filtering updates: raycast filters, collision shape signals, collision filter guards, MetaSkeleton subscription handling, contact helpers, and optional backend embedding. (#2279, #2250, #2343, #2277, #2245, #2194)
- Ensure Bullet double-precision builds include
dart/collision/bullet/BulletInclude.hppbefore Bullet headers soBT_USE_DOUBLE_PRECISIONis honored: #2334.
- Fixed PascalCase ODE compatibility headers to preserve legacy includes such as
-
LCP and Optimization
- Added dimension validation to
Problem::setDimension()to reject dimensions exceedingProblem::kMaxDimension(1,000,000) withInvalidArgumentExceptioninstead of attempting multi-GB allocations that cause ASan aborts orstd::bad_alloc. (#2500) - Refactored the LCP solver stack under
dart::math::lcpwith unified APIs plus new solver implementations and ImGui dashboard support. (#2202, #2241, #2318, #2355) - Modernized the Dantzig solver and improved stability (C++20 optimizations, NaN fallback, warning suppression). (#2081, #2253, #2111)
- Fixed Lemke solver segfaults on macOS arm64 by avoiding Eigen stack allocations. (#2462)
- Test coverage audit with Codecov infrastructure improvements and 200+ new unit/integration tests across common, collision, constraint, dynamics, io, sensor, and simulation modules. (#2462)
- Added LCP documentation. (#2240)
- Added dimension validation to
-
IO and Parsing
- MJCF parser improvements for MuJoCo 3.x compatibility: fixed
limitedattribute parsing to usestd::optional<bool>, addedautolimitscompiler attribute (default: true), added<freejoint>element support, wired<option>timestep/gravity to World, mapped joint stiffness/frictionloss to DART spring/friction APIs, added unknown element warnings for unsupported MJCF elements, and fixed null pointer crash for unnamed joints on root bodies. - MJCF
<actuator>parsing: motor, position, velocity, and general actuator types are mapped to DART Joint actuator types (FORCE, SERVO, VELOCITY) with force limits scaled by gear ratio. IncludesActuatorAttributesfor shared attributes (dyntype, gaintype, biastype, forcelimited, forcerange, gear, ctrlrange). - MJCF
<contact><exclude>collision filtering: body-pair exclusions are mapped to DART'sBodyNodeCollisionFilterblacklist on the world's constraint solver. - MJCF
<asset>texture and material parsing:<texture>(name, type, file, builtin, rgb1/rgb2, width/height) and<material>(name, texture, rgba, emission, specular, shininess, reflectance) elements are parsed and accessible by name or index. - MJCF
<body>camera and light parsing:<camera>(fovy, pos, mode, target, quat) and<light>(pos, dir, active, diffuse, specular, directional, castshadow) elements are parsed as child elements of bodies. - Fixed
Option::getApiRate()andOption::getImpRatio()returning the wrong value (both returned timestep). - Fix null pointer dereference in XmlHelpers getValue* functions when child element is missing. (#2428)
- Unified model loading under
dart::ioand added HTTP retriever support. (#2316, #2138, #604) - SDF/URDF parsing improvements: libsdformat integration, SDF mimic metadata, SDF joint limits, tiny inertial handling, URDF multi-DoF limits, and transmission coupling. (#2154, #2254, #2232, #2284, #2233, #2281, #264)
- Parser naming cleanup: renamed
DartLoadertoUrdfParserand standardized parser variable names. (#2269, #2270) - Resource handling updates: deprecated
ResourceRetriever::getFilePath()and fixed aiScene ownership with shared_ptr deleters. (#2217, #2285) - Documented SKEL as a legacy format.
- MJCF parser improvements for MuJoCo 3.x compatibility: fixed
-
GUI and Rendering
- Fix SEGV in
ImFontAtlas::AddFontFromMemoryCompressedTTFwhen null pointer is passed as compressed font data. (#2516) - Added headless rendering support via
ViewerConfigand pbuffer graphics context for CI pipelines and batch frame capture. IncludesViewer::captureBuffer()for raw RGBA pixel readback and a newheadless-renderingCI job. (#2466) - Added
ImGuiViewerconstruction fromViewerConfigto support headless ImGui rendering and example frame capture workflows. - GUI naming updates and backend cleanup (including the osg suffix removal). (#2209, #2257)
- ImGui integration updates: FetchContent, Vulkan detection/loader fixes, GUI scale controls, and ImGuiWidget subclassing. (#2056, #2085, #2261, #2280, #2356)
- Rendering updates: PolyhedronVisual attachments and VisualAspect color handling. (#2214, #2230)
- Skip
FontGlobalScalewhen ImGui font atlases are rebuilt for GUI scaling, normalize framebuffer scale detection to avoid downscaling on HiDPI setups, and scale lcp_physics ImGui panel sizing with font size.
- Fix SEGV in
-
Core
- Added SIMD abstraction layer (
dart/simd/) with portable vectorized math primitives supporting SSE4.2, AVX, AVX2, AVX-512, and ARM NEON backends with automatic runtime dispatch. IncludesVec<T, N>,VecMask<T, N>, aligned allocators, Eigen interop utilities, and dynamic vector/matrix types for batch computation. (#2490) - Added
<numbers>-style variable templates (dart::math::pi,phi,two_pi, etc.) plus numeric-limits helpers (inf_v,max_v,min_v,eps_v) indart/math/Constants.hppand deprecateddart::math::constants<T>(the legacy struct/header will be removed in DART 7.1). (#2150, #2157, #2225) - Logging and profiling updates: conditional logging macros, source-context metadata,
DART_ASSERTadoption, log prefix cleanup, and the text profiling backend. (#2099, #2104, #2105, #2109, #2110, #2238) - Core API organization updates: dart7 core library scaffold, per-module forward declaration headers, IkFast header relocation, and C++20 modernization. (#2097, #2195, #2057, #2073)
- Core API fixes: BodyNode transform derivative APIs, frame transform helpers for Inertia, COM-based potential energy, signal thread-safety, trivial accessor noexcept annotations, and non-finite joint input asserts. (#2131, #2153, #2224, #2181, #2218, #2273)
- Removed all APIs deprecated in DART 6.0 (legacy BodyNode collision flags, Skeleton self-collision aliases, Joint
getLocal*/updateLocal*accessors,World::checkCollision(bool),ConstraintSolver::setCollisionDetector(raw*), MarkergetBodyNode(),SdfParser::readSdfFile, and deprecated XML helpers). (#2132) - Removed all APIs deprecated in DART 6.1. (#2119)
- Removed all APIs deprecated in DART 6.2 (legacy Entity/BodyNode/JacobianNode/Joints/Skeleton notifiers,
Shape::notify*Update,EllipsoidShape::getSize/setSize,MultiSphereShapealias, andEigen::make_aligned_sharedalias). (#2122) - Removed
CollisionFilter::needCollision()(deprecated in DART 6.3). (#2126) - Removed
DART_COMMON_MAKE_SHARED_WEAKmacro (deprecated in DART 6.4). (#2127) - Removed all APIs deprecated in DART 6.7 (legacy math random helpers,
Skeleton::clone()overloads, andConstraintSolver::set/getLCPSolver()). (#2133) - Removed all APIs deprecated in DART 6.8. (#2136)
- Removed all APIs deprecated in DART 6.9 (
dart::common::make_unique,FreeJoint::setTransformstatic helpers, andNloptSolveroverloads taking rawnlopt::algorithmvalues). (#2139) - Removed all APIs deprecated in DART 6.10 (common::Signal::cleanupConnections,
SharedLibrary/SharedLibraryManagerfilesystem-path overloads, BodyNode friction/restitution helpers and aspect properties, andJoint::{set,is}PositionLimitEnforced()aliases). (#2140) - Removed all APIs deprecated in DART 6.11 (
DartLoader::Flagsand theparseSkeleton/parseWorldoverloads that accepted explicit resource retrievers and flag arguments). (#2141) - Removed all APIs deprecated in DART 6.12 (the
SdfParser::readWorld/readSkeletonoverloads that accepted directResourceRetrieverparameters). (#2142) - Removed all APIs deprecated in DART 6.13 (the legacy
dart::common::Timerutility,ConstraintSolver::getConstraints()/containSkeleton(),ContactConstraint's raw constructor and material helper statistics, and theMetaSkeletonvector-returninggetBodyNodes()/getJoints()accessors). (#2143) - Removed the legacy optional shim. (#2137)
- Removed the final compatibility headers that only re-included their replacements (
dart/collision/Option.hpp,dart/collision/Result.hpp, anddart/dynamics/MultiSphereShape.hpp) and scrubbed the remaining deprecated documentation strings. - Removed the remaining 6.13 compatibility shims: deleted
dart/utils/urdf/URDFTypes.hpp, the Eigen alias typedefs inmath/MathTypes.hpp, thedart7::comps::NameComponentalias, and the legacydInfinity/dPADhelpers, and tightenedSkelParserplane parsing to treat<point>as an error. - Fixed iterator invalidation in
Subject::sendDestructionNotification(),Observer::~Observer(), andObserver::removeAllSubjects()that caused non-deterministic SEGFAULT on macOS arm64 Debug builds when an observer callback mutated the observer/subject set during iteration.
- Added SIMD abstraction layer (
-
dartpy
- Added bindings for
dynamics::EndEffector(including theSupportaspect) and exposedBodyNode::createEndEffector/getEndEffectorplus theSkeleton::getEndEffectoroverloads to unblock the Atlas puppet Python example and IK tests. - Nanobind migration and namespace flattening (including dartpy7 scaffold and cleanup of pybind11 artifacts). (#2090, #2249, #2256, #2259)
- Binding improvements: joint bindings, lifetime fixes, MI casting, vector conversions with GIL release, repr bindings, and ImGuiWidget subclassing. (#2272, #2319, #2321, #2328, #2297, #2356)
- dartpy documentation and tutorials: Python API docs, RTD fixes, and Atlas IK tutorial material. (#2045, #2182, #2184, #2262, #2299, #2159, #2176)
- dartpy packaging updates: Windows wheel builds, Windows CI toggles, removal of dartpy8 bindings, and dart7/dartpy7 prerelease renames. (#2266, #2268, #2091, #2206, #2148, #2164)
- Added bindings for
-
Gazebo Integration
-
Examples and Tutorials
- Added a new HTTP retriever and G1 puppet example, plus refreshed demo media. (#2138)
- Added the experimental Raylib example, PolyhedronVisual example, and rolling cylinder demo. (#2310, #2214, #2353)
- Added Atlas IK dartpy bindings/tutorials and control theory + servo primers. (#2176, #2303, #2156)
- Fixed python example discovery and added the Issue #743 regression. (#2311, #743)
- Added explicit placeholder bodies to unfinished domino and biped Python tutorials so users can import/run the scaffolds without
IndentationErrors.
-
Tests
- Test organization and naming updates: reorganized test directories, normalized PascalCase names, and split integration test binaries. (#2071, #2116, #2193, #2210, #2260)
- Coverage expansions across math, collision, constraints, and ShapeNode inertia. (#2162, #2167, #2169, #2170, #2175, #2187, #2286)
- Regression and backend-specific tests: plane shape collision coverage, Bullet box stacking, FCL thin-plane regressions, FCL mesh contact regressions, servo/mimic consistency, PlaneShape GUI smoke tests, and uninitialized Isometry fixes. (#2092, #2227, #2229, #2276, #2258, #2263, #2283, #2350, #2342, #2130, #2120, #2281, #870, #915, #410)
-
Physics
-
Parsers
- Fix URDF shape parsing on FreeBSD: #2379
-
Tooling and Docs
-
Collision
- Fix Bullet double-precision includes on release-6.16: #2334
-
Tooling and Docs
- Fix pixi ex example selection: f716548
-
Build
-
Tests
- Stabilize World::Cloning in asserts-enabled CI: #2331
-
Tooling and Docs
- Build
- Fix FreeListAllocator assertions when building without NDEBUG (e.g., Ubuntu 24.04 GCC 13): #2295
-
Tested Platforms
- Linux
- Ubuntu 22.04 LTS / GCC 11.4 / x86_64
- Ubuntu 24.04 LTS / GCC 13.2 / x86_64
- macOS 14 / Clang 15 / arm64
- Windows / MSVC 19.40 / x86_64
- Linux
-
Simulation
-
Core
- Replace legacy
assertmacros withDART_ASSERTon release-6.16 (backport of #2109): #2117
- Replace legacy
-
Build
- Fix pybind11 detection and assert include handling with pixi builds: #2118
- Port Eigen compatibility guard to keep 3.4+ builds working on release-6.16: #2108
- Add
DART_USE_SYSTEM_TRACY,DART_USE_SYSTEM_PYBIND11, andDART_USE_SYSTEM_GOOGLEBENCHMARKtoggles: #1911, #1907, #1904 - Fix absolute install directory handling in CMake exports: #2006
-
Tooling and Docs
- Use system
googletestandgooglebenchmarkin pixi environments and upgrade bundled dependencies: #1905 - Switch coverage and API docs workflows to pixi tasks and GitHub Pages deploy actions: #2036, #2032
- Install OpenSceneGraph from source on macOS builds to avoid flaky CI: #2037
- Restructure documentation to clearly separate C++ and Python guidance: #2040
- Add pixi-powered developer tasks (including Python workflows) and refresh GitHub templates: #2034, #2039
- Add gz-physics integration tests to CI to guard the public plugin: #2000
- Use system
-
Tested Platforms
- Linux
- Ubuntu 22.04 LTS / GCC 11.4 / x86_64
- Ubuntu 24.04 LTS / GCC 13.2 / x86_64
- macOS 14 / Clang 15 / arm64
- Windows / MSVC 19.40 / x86_64
- Linux
-
Build
-
Tested Platforms
- Linux
- Ubuntu 22.04 LTS / GCC 11.4 / x86_64
- Ubuntu 24.04 LTS / GCC 13.2 / x86_64
- macOS 14 / Clang 15 / arm64
- Windows / MSVC 19.40 / x86_64
- Linux
-
Fixed missing parentheses in config.hpp: #1838
-
Allowed negative scale for MeshShape: #1841
-
Tested Platforms
- Linux
- Ubuntu 22.04 LTS / GCC 11.4 / x86_64
- Ubuntu 24.04 LTS / GCC 13.2 / x86_64
- macOS 14 / Clang 15 / arm64
- Windows / MSVC 19.40 / x86_64
- Linux
-
Fixed GLUT dependency handling on Windows: #1827
-
Tested Platforms
- Linux
- Ubuntu 22.04 LTS / GCC 11.4 / x86_64
- Ubuntu 24.04 LTS / GCC 13.2 / x86_64
- macOS 14 / Clang 15 / arm64
- Windows / MSVC 19.40 / x86_64
- Linux
-
Changed the default CMake option to DART_ENABLE_SIMD=OFF: #1825
-
Tested Platforms
- Linux
- Ubuntu 22.04 LTS / GCC 11.4 / x86_64
- Ubuntu 24.04 LTS / GCC 13.2 / x86_64
- macOS 14 / Clang 15 / arm64
- Windows / MSVC 19.40 / x86_64
- Linux
-
Fixed version definitions: #1820
-
Tested Platforms
- Linux
- Ubuntu 22.04 LTS / GCC 11.4 / x86_64
- Ubuntu 24.04 LTS / GCC 13.2 / x86_64
- macOS 14 / Clang 15 / arm64
- Windows / MSVC 19.40 / x86_64
- Linux
-
Included CTest for BUILD_TESTING option: #1819
This release is mostly a maintenance update, including various CI updates and build fixes for recent development environment toolsets and dependencies.
-
Tested Platforms
- Linux
- Ubuntu 22.04 LTS / GCC 11.4 / x86_64
- Ubuntu 24.04 LTS / GCC 13.2 / x86_64
- macOS 14 / Clang 15 / arm64
- Windows / MSVC 19.40 / x86_64
- Linux
-
Breaking Changes
- Removed planning component
-
Build
- Added Pixi support
-
General
- Added profile interface with Tracy backend support
- Added benchmark setup, including boxes and kinematics benchmarks
-
Dynamics
- Allowed specifying mimic joint properties per DoF: #1752
- Improved performance in constructing LCP problem
-
Tested Platforms
- Linux
- Ubuntu 22.04 LTS on amd64 / GCC 11.2 / amd64
- Ubuntu 24.04 LTS on amd64 / GCC 13.2 / amd64
- macOS 12 (Monterey) / AppleClang 14 / amd64
- Windows / MSVC 19.38 / amd64
- Linux
-
Build
- Fixed build with GCC >= 13: #1793
-
Tested Platforms
- Ubuntu Focal on amd64 / GCC 9.4 / amd64
- Ubuntu Jammy on amd64 / GCC 11.3 / amd64
- macOS 12 (Monterey) / Clang 14 / amd64
- Windows / MSVC 19.37 / amd64
-
Build
-
Dynamics
- Fixed joint not recovering after reaching position limits in servo mode: #1774
-
Supported Platforms
- Ubuntu Focal on amd64 / GCC 9.3 / amd64
- Ubuntu Jammy on amd64 / GCC 11.2 / amd64
- macOS 12 (Monterey) / Clang 13 / amd64
- Windows / Microsoft Visual Studio 2019 / amd64
-
Dependency
- Added required dependencies: fmt
- Added optional dependencies: spdlog
- Removed required dependencies: Boost
-
Build
- Dropped supporting FCL < 0.5: #1647
-
Common
-
Collision Detection
-
Dynamics
- Fixed setResitutionCoeff() calling setFrictionCoeff(): #1677
- Made inertial warnings optional when setting tensor: #1672
- Added deep copy for shapes: #1612
- Added iterator methods to container-like classes: #1644
- Fixed grouping of constraints: #1624, #1628
- Fixed issue with removing skeletons without shapes: #1625
- Added support for custom contact surface handlers: #1626
-
GUI
- Build
- Fixed build with urdfdom 3.1.0 on Windows: #1675
-
Build
- Fixed bullet header include: #1620
-
dartpy
- Added Python bindings for Joint::getWrenchTo{Child|Parent}BodyNode: #1621
-
API Breaking Changes
- DART 6.12.0 and later require compilers that support C++17: #1600
- Increased minimum CMake version to 3.10.2
- Increased minimum compiler versions to GCC 7.3.0, Clang 6.0, MSVC 16.0
- Dropped Ubuntu Xenial (16.04 LTS) support
- DART 6.12.0 and later require compilers that support C++17: #1600
-
Build
- Remove DART_BUILD_DARTPY option: #1600
-
Dynamics
- Added joint force/torque getter: #1616
-
Parsers
-
GUI
- Updated ImGui to 1.84.2: #1608
-
dartpy
- Added Python bindings for ResourceRetriever and SdfParser: #1610
- dartpy
- Added Python binding for global lighting mode setting: #1615
- Dynamics
- Fixed incorrect LCP construction in JointConstraint for multi-DOFs joints: #1597
-
Math
- Added
Mesh,TriMesh, andIcosphereclasses: #1579
- Added
-
Collision
-
Dynamics
- Fixed servo motor doesn't respect joint position limits: #1587
-
GUI
-
Build and testing
- Add DART_ prefix to macros to avoid potential conflicts: #1586
-
Dynamics
- Fixed inertia calculation of CapsuleShape: #1561
-
GUI
-
dartpy
- Added Python binding for BodyNode::getBodyForce(): #1563
-
Common
-
Collision
-
Kinematics
-
Dynamics
- Fixed friction and restitution of individual shapes in a body: #1369
- Fixed soft body simulation when command input is not reset: #1372
- Added joint velocity limit constraint support: #1407
- Added type property to constrain classes: #1415
- Allowed to set joint rest position out of joint limits: #1418
- Added secondary friction coefficient parameter: #1424
- Allowed to set friction direction per ShapeFrame: #1427
- Fixed incorrect vector resizing in BoxedLcpConstraintSolver: #1459
- Changed to increment BodyNode version when it's being removed from Skeleton: #1489
- Changed to print warning only once from BulletCollisionDetector::collide/distance: #1546
- Added force dependent slip: #1505
-
GUI
- Fixed memory leaks from dart::gui::osg::Viewer: #1349
- Added point rendering mode to PointCloudShape: #1351, #1355
- Updated ImGui to 1.71: #1362
- Updated ImGui to 1.79: #1498
- Fixed refresh of LineSegmentShapeNode: #1381
- Fixed OSG transparent object sorting: #1414
- Added modifier key support to ImGuiHandler: #1436
- Fixed mixed intrinsic and extrinsic camera parameters in OpenGL projection matrix: #1485
- Enabled mouse middle and right buttons in ImGuiHandler: #1500
-
Parser
-
dartpy
- Added raycast option and result: #1343
- Added GUI event handler: #1346
- Added shadow technique: #1348
- Added findSolution and solveAndApply to InverseKinematics: #1358
- Added InteractiveFrame and ImGui APIs: #1359
- Added bindings for Joint::getTransformFrom{Parent|Child}BodyNode(): #1377
- Added bindings for BodyNode::getChild{BodyNode|Joint}(): #1387
- Added bindings for Inertia: #1388
- Added bindings for getting all BodyNodes from a Skeleton: #1397
- Added bindings for background color support in osg viewer: #1398
- Added bindings for BallJoint::convertToPositions(): #1408
- Fixed typos in Skeleton: #1392
- Fixed enabling drag and drop for InteractiveFrame: #1432
- Added bindings for pointcloud and contact retrieval: #1455
- Fixed TypeError from dartpy.dynamics.Node.getBodyNodePtr(): #1463
- Added pybind/eigen.h to DistanceResult.cpp for read/write of eigen types: #1480
- Added bindings for adding ShapeFrames to CollisionGroup: #1490
- Changed dartpy install command to make install-dartpy: #1503
- Added bindings for CollisionFilter, CollisionGroup, and Node: #1545
- Added bindings for TaskSpaceRegion: #1550
-
Build and testing
- Fixed compiler warnings from GCC 9.1: #1366
- Replaced M_PI with dart::math::pi: #1367
- Enabled octomap support on macOS: #1078
- Removed dependency on Boost::regex: #1412
- Added support new if() IN_LIST operator in DARTConfig.cmake: #1434
- Updated Findfcl.cmake to support FCL 0.6: #1441
- Added gtest macros for Eigen object comparisons: #1443
- Removed gccfilter: #1464
- Allowed to set CMAKE_INSTALL_PREFIX on Windows: #1478
- Enforced to use OpenSceneGraph 3.7.0 or greater on macOS Catalina: #1479
- Fixed compatibility with clang-cl: #1509
- Fixed MSVC linking for assimp and fcl: #1510
- Fixed AspectWithState-relate compile error on Windows: #1528
- Made
dart.pcrelocatable: #1529 - Added CI for multiple Linux platforms: arm64 and ppc64le: #1531
- Fixed Aspect/Composite-relate tests on Windows/MSVC: #1541, #1542
- Added
DART_SKIP_<dep>_advanced option: #1529 - Replaced OpenGL dependency variables with targets: #1552
-
Documentation
- Updated tutorial documentation and code to reflect new APIs: #1481
- Optimization
- Added Ipopt >= 3.13 support: #1506
- Build
- Added support new if() IN_LIST operator in DARTConfig.cmake (6.9 backport): #1494
- Dynamics
- Dynamics
- Allowed constraint force mixing > 1: #1371
-
Collision
- Added default constructor to RayHit: #1345
-
dartpy
- Updated build scripts for uploading dartpy to PyPI: #1341
-
API Breaking Changes
- DART 6.9.0 and later require compilers that support C++14.
-
Common
- Deprecated custom make_unique in favor of std::make_unique: #1317
-
Collision Detection
- Added raycast query to BulletCollisionDetector: #1309
-
Dynamics
- Added safeguard for accessing Assimp color: #1313
-
Parser
- Changed URDF parser to use URDF material color when specified: #1295
-
GUI
- Added heightmap support to OSG renderer: #1293
- Improved voxel grid and point cloud rendering performance: #1294
- Fixed incorrect alpha value update of InteractiveFrame: #1297
- Fixed dereferencing a dangling pointer in WorldNode: #1311
- Removed warning of ImGuiViewer + OSG shadow: #1312
- Added shape type and color options to PointCloudShape: #1314, #1316
- Fixed incorrect transparency of MeshShape for MATERIAL_COLOR mode: #1315
- Fixed incorrect PointCloudShape transparency: #1330
- Improved voxel rendering by using multiple nodes instead of CompositeShape: #1334
-
Examples and Tutorials
- Updated examples directory to make dart::gui::osg more accessible: #1305
-
dartpy
- Switched to pybind11: #1307
- Added grid visual: #1318
- Added ReferentialSkeleton, Linkage, and Chain: #1321
- Enabled WorldNode classes to overload virtual functions in Python: #1322
- Added JacobianNode and operational space controller example: #1323
- Removed static create() functions in favor of custom constructors: #1324
- Added optimizer APIs with GradientDescentSolver and NloptSolver: #1325
- Added SimpleFrame: #1326
- Added basic inverse kinematics APIs: #1327
- Added shapes and ShapeFrame aspects: #1328
- Added collision APIs: #1329
- Added DegreeOfFreedom and ShapeNode: #1332
- Added constraint APIs: #1333
- Added BallJoint, RevoluteJoint, joint properties, and chain tutorial (incomplete): #1335
- Added all the joints: #1337
- Added DART, Bullet, Ode collision detectors: #1339
- Collision
- Fixed handling of submeshes in ODE collision detector: #1336
-
Linux
- GCC 64-bit: 5.4.0, 7.3.0, 8.2.0
- GCC 32-bit: 5.4.0
-
macOS
- AppleClang: 9.1.0, 10.0.0
- GUI
- Fixed crashing on exiting OSG + ImGui applications: #1303
-
Linux
- GCC 64-bit: 5.4.0, 7.3.0, 8.2.0
- GCC 32-bit: 5.4.0
-
macOS
- AppleClang: 9.1.0, 10.0.0
-
Parser
- Fixed VskParker returning incorrect resource retriever: #1300
-
Build
- Fixed building with pagmo's optional dependencies: #1301
-
Linux
- GCC 64-bit: 5.4.0, 7.3.0, 8.2.0
- GCC 32-bit: 5.4.0
-
macOS
- AppleClang: 9.1.0, 10.0.0
-
Dynamics
- Fixed BoxedLcpConstraintSolver is not API compatible with 6.7: #1291
-
Build
- Fixed building with FCL built without Octomap: #1292
-
Linux
- GCC 64-bit: 5.4.0, 7.3.0, 8.2.0
- GCC 32-bit: 5.4.0
-
macOS
- AppleClang: 9.1.0, 10.0.0
- Build System
-
Linux
- GCC 64-bit: 5.4.0, 7.3.0, 8.2.0
- GCC 32-bit: 5.4.0
-
macOS
- AppleClang: 9.1.0, 10.0.0
-
Kinematics
-
Dynamics
-
Simulation
-
Collision Detection
- The BodyNodeCollisionFilter will ignore contacts between immobile bodies: #1232
-
Planning
- Fixed linking error of FLANN by explicitly linking to lz4: #1221
-
Python
- Added (experimental) Python binding: #1237
-
Parsers
- Changed urdf parser to warn if robot model has multi-tree: #1270
-
GUI
-
Build System
-
Linux
- GCC 64-bit: 5.4.0, 7.3.0, 8.2.0
- GCC 32-bit: 5.4.0
-
macOS
- AppleClang: 9.1.0, 10.0.0
- Dynamics
- Fixed Skeleton::setState(): #1245
-
Linux
- GCC (C++11): 5.4.0, 7.3.0, 8.2.0
-
Linux (32-bit)
- GCC (C++11): 5.4.0
-
macOS
- AppleClang (C++11): 9.1.0
-
Linux
- GCC (C++11): 5.4.0, 7.3.0, 8.2.0
-
Linux (32-bit)
- GCC (C++11): 5.4.0
-
macOS
- AppleClang (C++11): 9.1.0
- Build system
-
Linux
- GCC (C++11): 5.4.0, 7.3.0, 8.2.0
-
Linux (32-bit)
- GCC (C++11): 5.4.0
-
macOS
- AppleClang (C++11): 9.1.0
-
Build system
-
Collision Detection
-
Math
- Consolidated random functions into Random class: #1109
-
Dynamics
-
Optimization
- Added multi-objective optimization with pagmo2 support: #1106
-
GUI
-
Misc
- Updated Googletest to version 1.8.1: #1214
-
Linux
- GCC (C++11): 5.4.0, 7.3.0, 8.2.0
-
Linux (32-bit)
- GCC (C++11): 5.4.0
-
macOS
- AppleClang (C++11): 9.1.0
- Utils
- Fixed checking file existence in DartResourceRetriever: #1107
-
Utils
- Added option to DartResourceRetriever to search from environment variable DART_DATA_PATH: #1095
-
Examples
- Fixed CMakeLists.txt of humanJointLimits: #1094
-
Common
-
GUI
- Added FOV API to OSG viewer: #1048
-
Parsers
- Fixed incorrect parsing of continuous joints specified in URDF #1064
-
Simulation
- Added World::hasSkeleton(): #1050
-
Misc
- Fixed memory leaks in mesh loading: #1066
-
Common
-
Kinematics/Dynamics
- Added relative Jacobian functions to MetaSkeleton: #997
- Added vectorized joint limit functions: #996
- Added lazy evaluation for shape's volume and bounding-box computation: #959
- Added IkFast support as analytic IK solver: #887
- Added TranslationalJoint2D: #1003
- Fixed NaN values caused by zero-length normals in ContactConstraint: #881
- Extended BodyNode::createShapeNode() to accept more types of arguments: #986
-
Collision detection
- Added FCL 0.6 support (backport of #873): #936
-
GUI
-
Examples
- Added humanJointLimits: #1016
-
License
- Added Personal Robotics Lab and Open Source Robotics Foundation as contributors: #929
-
Misc
- Added World::create(): #962
- Added MetaSkeleton::hasBodyNode() and MetaSkeleton::hasJoint(): #1000
- Suppressed -Winjected-class-name warnings from Clang 5.0.0: #964
- Suppressed -Wdangling-else warnings from GCC 7.2.0: #937
- Changed console macros to use global namespace resolutions: #1010
- Fixed build with Eigen 3.2.1-3.2.8: #1042
- Fixed various build issues with Visual Studio: #956
- Removed TinyXML dependency: #993
-
Build system
- Removed an undefined cmake macro/function: #1036
-
ROS support
-
Collision detection
- Added a feature of disabling body node pairs to BodyNodeCollisionFilter: #911
-
Kinematics/Dynamics
- Added setter and getter for WeldJointConstraint::mRelativeTransform: #910
-
Parsers
- Improved SkelParser to read alpha value: #914
-
Misc
- Changed not to use lambda function as an workaround for DART python binding: #916
-
Collision detection
- Fixed collision checking between objects from the same body node: #894
-
Kinematics/Dynamics
- Fixed transform of ScrewJoint with thread pitch: #855
-
Parsers
-
Testing
-
Misc
-
Common
-
Math
-
Collision Detection
-
Simulation
- Fixed World didn't clear collision results on reset: #863
-
Parsers
-
GUI
-
Misc
- Added createShared() and createUnique() pattern: #844
- Added Skeleton::getRootJoint(): #832
- Added CMake targets for code formatting using clang-format: #811, #817
- Renamed MultiSphereShape to MultiSphereConvexHullShape: #865
- Modified the member function names pertain to lazy evaluation to be more relevant to their functionalities: #833
-
Tutorials & Examples
-
Dynamics
- Fixed bug of ContactConstraint with kinematic joints: #809
-
Misc
- Fixed that ZeroDofJoint::getIndexInTree was called: #818
-
Build
-
Misc
- Updated lodepng up to version 20160501: #791
-
Collision detection
-
Dynamics
-
Planning
- Fixed incorrect linking to flann library: #761
-
Parsers
-
GUI
- Added ImGui for 2D graphical interface: #781
-
Examples
- Added osgAtlasSimbicon and osgTinkertoy: #781
-
Misc improvements and bug fixes
-
Collision detection
-
Dynamics
- Fixed total mass is not being updated when bodies removed from Skeleton: #731
-
Misc improvements and bug fixes
-
Common data structures
-
Kinematics
- Added convenient functions for setting joint limits: #703
- Added more description on
InverseKinematics::solve(): #624 - Added API for utilizing analytical inverse kinematics: #530, #463
- Added color property to
Marker: #187 - Improved
Skeletonto cloneStateas well: #691 - Improved
ReferentialSkeletonto be able to add and removeBodyNodes andDegreeOfFreedoms to/fromGroups freely: #557, #556, #548 - Changed
MarkerintoNode: #692, #609 - Renamed
Joint::get/setLocal[~]toJoint::get/setRelative[~]: #715, #714 - Renamed
PositionLimitedtoPositionLimitEnforced: #447 - Fixed initialization of joint position and velocity: #691, #621
- Fixed
InverseKinematicswhen it's used withFreeJointandBallJoint: #683 - Fixed ambiguous overload on
MetaSkeleton::getLinearJacobianDeriv: #628, #626
-
Dynamics
- Added
get/setLCPSolverfunctions toConstraintSolver: #633 - Added
ServoMotorConstraintas a preliminary implementation forSERVOactuator type: #566 - Improved
ConstraintSolverto obey C++11 ownership conventions: #616 - Fixed segfualting of
DantzigLCPSolverwhen the constraint dimension is zero: #634 - Fixed missing implementations in ConstrainedGroup: #586
- Fixed incorrect applying of joint constraint impulses: #317
- Deprecated
draw()functions of dynamics classes: #654
- Added
-
Collision detection
-
Parsers
- Fixed segfault of
SdfParserwhennullptrResourceRetrieveris passed: #663
- Fixed segfault of
-
GUI features
-
Simulation
-
Misc improvements and bug fixes
- Added
make_unique<T>that was omitted from C++11: #639 - Added missing
overridekeywords: #617, #535 - Added gcc warning flag
-Wextra: #600 - Improved memory management of
constraintnamespace: #584, #583 - Changed the extension of headers from
.hto.hpp: #709, #693, #568 - Changed Doxyfile to generate tag file: #690
- Changed the convention to use
std::size_toversize_t: #681, #656 - Changed CMake to configure preprocessors using
#cmakedefine: #648, #641 - Updated copyright years: #679, #160
- Renamed directory name
appstoexamples: #685 - Fixed warnings of unused variables in release mode: #646
- Fixed typo of
getNumPluralAddoNamein utility macro: #615 - Fixed linker error by adding namespace-scope definitions for
constexpr staticmembers: #603 - Fixed segfault from nullptr meshes: #585
- Fixed typo of tutorial with minor improvements: #573
- Fixed
NameManager<T>::removeEntries(~)called a function that does not exist: #564, #554 - Fixed missing definitions for various functions: #558, #555
- Fixed const correctness of
BodyNode::getMomentsOfInertia(): #541, #540 - Fixed
ftelbug in Linux with an workaround: #533 - Removed unnecessary
virtualkeyword for overriding functions: #680 - Removed deprecated APIs in DART 5: #678
- Added
-
Build and test issues
- Added CMake target for code coverage testing, and automatic reporting: #688, #687, #638, #632
- Added missing
liburdfdom-devdependency in Ubuntu package: #574 - Modulized DART libraries: #706, #675, #652, #477
- Improved Travis-CI script: #655
- Improved CMake script by splitting tutorials, examples, and tests into separate targets: #644
- Improved wording of the cmake warning messages for ASSIMP: #553
- Changed Travis-CI to treat warning as errors using
-Werrorflags: #682, #677 - Changed Travis-CI to test DART with bullet collision detector: #650, #376
- Changed the minimum requirement of Visual Studio version to 2015: #592
- Changed CMake to build gui::osg examples when
DART_BUILD_EXAMPLESis on: #536 - Simplified Travis-CI tests for general pushes: #700
- Fixed Eigen memory alignment issue in testCollision.cpp: #719
- Fixed
BULLET_INCLUDE_DIRSinDARTConfig.cmake: #697 - Fixed linking with Bullet on OS X El Capitan by supporting for Bullet built with double precision: #660, #657
- Fixed FCL version check logic in the main
CMakeLists.txt: #640 - Fixed
find_package(DART)on optimizer components: #637 - Fixed linking against
${DART_LIBRARIES}not working in Ubuntu 14.04: #630, #629 - Fixed Visual Studio 2015 build errors: #580
- Removed OpenGL dependency from
dartlibrary: #667 - Removed version check for Bullet: #636, #625
-
Improved camera movement of OpenGL GUI: smooth zooming and translation
-
Removed debian meta files from the main DART repository
-
Fixed Lemke LCP solver for several failing cases
-
Increase minimum required Ipopt version to 3.11.9
-
Added support of urdfdom_headers 1.0 for DART 5.1 (backport of #766)
- Fixed inconsistent frame rate of GlutWindow
-
Updated to support Bullet built with double precision (backport of #660)
-
Modified to use btGImpactMeshShape instead of btConvexTriangleMeshShape for mesh
-
Updated to support FCL 0.5 and tinyxml 4.0 (backport of #749)
-
Fixed inverse kinematics (backporting)
-
Fixed aligned memory allocation with Eigen objects in loading meshes
-
Fixed incorrect applying joint constraint impulses (backporting)
-
Fixed some build and packaging issues
-
Add bullet dependency to package.xml
-
Improved handling of missing symbols of Assimp package
-
Improved travis-ci build log for Mac
-
Fixed warnings in Function.cpp
-
Fixed build failures on AppVeyor
-
Fixed const qualification of ResourceRetriever
-
Fixed aligned memory allocation with Eigen objects
-
Fixed copy safety for various classes
-
Fixed incorrect rotational motion of BallJoint and FreeJoint
-
Removed old documents: dart-tutorial, programmingGuide
-
Fixed aligned memory allocation with Eigen objects
-
Fixed segfault in Linkage::Criteria
-
Improved sdf/urdf parser
-
Fixed CMake warnings
-
Fixed build issues on Windows
-
Fixed IpoptSolver bugs
-
Added Frame::getTransform(withRespecTo, inCoordinatesOf)
-
Improved API documentation -- set the SHOW_USED_FILES tag to NO
-
Added convenience setters for generalized coordinates of FreeJoint
-
Fixed compilation warnings
-
Added a mutex to Skeleton
-
Added generic URIs support
-
Added End Effector, Inverse Kinematics, and osgDart
-
Removed outdated packaging scripts
-
Added initial position and initial velocity properties
-
Added a package.xml file for REP-136 support
-
Improved Linkage and Chain Criteria
-
Added Joint::isCyclic to mark SO(2) topology
-
Fixed SEGFAULTs in DartLoader
-
Added the SYSTEM flag to include_directories
-
Improved Joint warning
-
Added tutorials (http://dart.readthedocs.org/)
- Fixed bug in Jacobian update notifications
-
Improved app indexing for bipedStand and atlasSimbicon
-
Added clipping command when it exceeds the limits
-
Improved CollisionNode's index validity check
-
Standardized warning messages for Joints
-
Fixed bug in SDF parser -- correct child for a joint
-
Fixed SDF parsing for single link model without joint
-
Added missing virtual destructors to Properties in Entity and [Soft]BodyNode
-
Limited maximum required version of Assimp less than 3.0~dfsg-4
-
Fixed SEGFAULTs in DartLoader
-
Fixed aligned memory allocation with Eigen objects
-
Added some missing API for DegreeOfFreedom
-
Replaced logMaps with Eigen::AngleAxisd
-
Improved FCL collision detector
-
Removed deprecated API and suppressed warnings
-
Added use of OpenGL's multisample anti-aliasing
-
Added computation of differences of generalized coordinates
-
Added deprecated and force-linline definitions for clang
-
Eradicated memory leaks and made classes copy-safe and clonable
-
Improved PlaneShape constructors
-
Added appveyor options for parallel build and detailed log
-
Improved robustness and package handling for URDF parsing
-
Fixed bug in BodyNode::_updateBodyJacobianSpatialDeriv()
-
Added alpha channel and Color functions
-
Added Jacobian getters to Skeleton
-
Added ArrowShape for visualizing arrows
-
Fixed matrix dimension bug in operationalSpaceControl app
-
Added build type definitions
-
Added Signal class
-
Added LineSegmentShape for visualizing line segments
-
Fixed segfault in SoftSdfParser
-
Added subscriptions for destructions and notifications
-
Added NloptSolver::[get/set]NumMaxEvaluations()
-
Added support of Eigen::VectorXd in parser
-
Added Skeleton::getNumJoints()
-
Fixed bug in DARTCollide for sphere-sphere collision
-
Fixed naming issues for Skeletons in World
-
Added PlanarJoint support for URDF loader
-
Fixed rotation of the inertia reference frame for URDF loader
-
Fixed bug in loading WorldFile
-
Added plotting of 2D trajectories
-
Removed unsupported axis orders of EulerJoint
-
Added convenience functions to help with setting joint positions
-
Added Frame class and auto-updating for forward kinematics
-
Added Travis-CI build test for OSX
-
Added specification of minimum dependency version
- Updated DART 4.3 to be compatible with urdf 1.0/tinyxml2 6/flann 1.9.1
- Fixed duplicate entries in Skeleton::mBodyNodes causing segfault in destructor
- Fixed incorrect applying of joint constraint impulses (backported from 6.0.0)
- Fixed build issue with gtest on Mac
- Fixed joint Coulomb friction
- Fixed installation -- missing headers (utils/urdf, utils/sdf)
- Fixed API incompatibility introduced by dart-4.3.0
- Added name manager for efficient name look-up and unique naming
- Added all-inclusive header and namespace headers
- Added DegreeOfFreedom class for getting/setting data of individual generalized coordinates
- Added hybrid dynamics
- Added joint actuator types
- Added Coulomb joint friction
- Migrated to C++11
- Improved readability of CMake output messages
- Fixed const-correctneess of member functions
- Added handling use of 'package:/' in URDF
- Fixed version numbering of shared libraries in debian packages
- Fixed Jacobian and its derivatives of FreeJoint/BallJoint
- Added reset functions for Simulation and Recording class
- Added operational space control example
- Fixed misuse of Bullet collision shapes
- Fixed adjacent body pair check for Bullet collision detector
- Fixed incorrect computation of constraint impulse for BallJointConstraint and WeldJointContraint
- Improved generation of soft box shape for soft body
- Added ABI check script
- Fixed build issues on Linux
- Fixed build issues on Windows
- Fixed unintended warning messages
- Fixed bug in switching collision detectors
- Fixed kinematics and dynamics when a skeleton has multiple parent-less bodies
- Fixed issue on installing DART 4 alongside DART 3 on Linux
- Fixed warnings on gcc
- Renamed getDof() to getNumDofs()
- Added cylinder shape for soft body
- Added implicit joint spring force and damping force
- Added planar joint
- Added soft body dynamics
- Added computation of velocity and acceleration of COM
- Added bullet collision detector
- Improved performance of forward dynamics algorithm
- Improved dynamics API for Skeleton and Joint
- Improved constraint dynamics solver
- Improved calculation of equations of motion using Featherstone algorithm
- Improved optimizer interface and added nlopt solver
- Fixed self collision bug
- Fixed incorrect integration of BallJoint and FreeJoint
- Removed Transformation classes. Their functionality is now included in joint classes.
- Added Featherstone algorithm. Can currently only be used without collision handling. The old algorithm is still present and used for that case.
- Removed kinematics namespace. Functionality is moved to dynamics classes.
- Added dart root namespace
- A lot of function and variable renames
- Added constraint namespace
- Added "common" namespace
- Clean-up of build system:
- Renamed DART_INCLUDEDIR to the standard-compliant DART_INCLUDE_DIRS in CMake files. Users need to adapt their CMake files for this change.
- Users no longer need to call find_package(DARTExt) in the CMake files. A call to find_package(DART) also finds its dependencies now.
- Allow user to overwrite installation prefix
- Add possibility to include DART header files as '#include <dart/dynamics/Skeleton.h>' in addition to '#include <dynamics/Skeleton.h>'
- Allow out-of-source builds
- URDF loader:
- Major clean-up
- Consider mesh scaling factor
- Replaced robotics::World with simulation::World
- Removed robotics::Robot
- Added simulation::SimWindow
- Some speed-up of Eigen calculations
- Added abstract trajectory interface
- ConstraintDynamics handles contact, joint limit and other constraint forces simultaneously
- Improved Lemke algorithm for solving LCP
- Renamed skeletonDynamics::getQDotVector() to getPoseVelocity()
- Added abstract CollisionDetector interface allowing for multiple different collision detector implementations.
- Created math namespace
- Added System class as base class to Skeleton and Joint
- URDF loader: Removed ability to load nonstandard URDF files with an object tag
- URDF loader: Removed ability to load nonstandard URDF files with an object tag
- Added support for multiple shapes per BodyNode
- Made urdfdom a dependency instead of including it in the DART source
- Added function to CollisionDetector to let user check a specific pair of BodyNodes for collision
- Mass and inertia are no longer stored in Shape but in BodyNode.
- Different shapes for collision and visualization (not just different meshes)
- Shapes are no longer centered at the COM but can be transformed independently relative to the link frame.
- Improved URDF support
- Support for non-mesh shapes
- Does not create dummy root nodes anymore
- Support for continuous joints
- Support for arbitrary joint axes for revolute joints (but not for prismatic joints) instead of only axis-aligned joint axes
- Support for relative mesh paths even if the robot and world URDF files are in different directories
- All supported joint types can be root joints
- Clean-up of the Robot class
- Removed Object class
- More robust build and installation process on Linux