You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,25 +13,32 @@ Unreleased
13
13
14
14
**Added**
15
15
16
+
* **PyBullet integration**: added support for PyBullet client and forward/inverse kinematic solver
16
17
* Added ``ClientInterface``, ``PlannerInterface`` and various backend feature interfaces
17
18
* Added implementations of these interfaces for ROS and V-REP
18
-
* Added client for PyBullet with forward and inverse kinematics
19
+
* Added ``attributes`` dictionary to ``Robot`` class
19
20
20
21
**Changed**
21
22
22
23
* Updated to ``COMPAS 0.16.1``
23
24
* Renamed ``compas_fab.robots.Robot.to_local_coords`` to ``compas_fab.robots.Robot.to_local_coordinates``
24
25
* Renamed ``compas_fab.robots.Robot.to_world_coords`` to ``compas_fab.robots.Robot.to_world_coordinates``
25
26
* Backend clients have been restructured according to the new interfaces
27
+
* Parameter ``backend`` of forward kinematics has been renamed to ``solver``
26
28
* The signatures of all kinematics, motion planning and planning scene management methods have been homogenized across backend clients and within ``Robot``
27
29
* All examples have been updated to reflect these changes
28
30
31
+
29
32
**Fixed**
30
33
31
34
* Attached collision meshes are included in inverse kinematics calculations in ROS
32
35
33
36
**Deprecated**
34
37
38
+
* The methods ``forward_kinematics``, ``inverse_kinematics``, ``plan_cartesian_motion`` and ``plan_motion``
39
+
of ``Robot`` class have been refactored, but a backwards-compatible deprecated version with the old
40
+
signatures still exists suffixed by ``_deprecated``, e.g. ``forward_kinematics_deprecated``.
0 commit comments