Skip to content

Commit

Permalink
Merge pull request #564 from robotology/traversaro-patch-1
Browse files Browse the repository at this point in the history
Ensure that the link_H_geometry transform is always valid
  • Loading branch information
traversaro authored Aug 27, 2019
2 parents a2fe834 + 0f2606b commit d389cf3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions doc/releases/v0_11_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ Bug Fixes
getFrameBiasAcc method always returned the bias acceleration corresponding to the first call to setRobotState.
* Fixed getBiasAcc method in KinDynComputations to take into account the effect of non-zero and non-parallel
linear and angular base velocity, described in https://github.com/robotology/idyntree/issues/370 .
* Fixed compilation on 32-bit Windows ( https://github.com/robotology/idyntree/pull/506 ).
* Fixed a URDF parser regression introduced in iDynTree 0.11 in URDF parser for which collision geometeries were also loaded as visual geometries, and viceversa (https://github.com/robotology/idyntree/issues/497, https://github.com/robotology/idyntree/pull/559).
* Fixed compilation on 32-bit Windows ( https://github.com/robotology/idyntree/pull/506 )
* Fixed a URDF parser regression introduced in iDynTree 0.11 for which collision geometries were also loaded as visual geometries, and viceversa (https://github.com/robotology/idyntree/issues/497, https://github.com/robotology/idyntree/pull/559).
* Fixed a URDF parser regression introduced in iDynTree 0.11 for which geometry elements without origin tag were not correctly parsed (https://github.com/robotology/idyntree/issues/496, https://github.com/robotology/idyntree/pull/564).

New features
------------
Expand Down
2 changes: 1 addition & 1 deletion src/model_io/urdf/include/private/VisualElement.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class iDynTree::VisualElement: public iDynTree::XMLElement
public:
struct VisualInfo {
std::string m_name;
iDynTree::Transform m_origin;
iDynTree::Transform m_origin{iDynTree::Transform::Identity()};
std::shared_ptr<SolidShape> m_solidShape;
std::shared_ptr<MaterialElement::MaterialInfo> m_material;
};
Expand Down

0 comments on commit d389cf3

Please sign in to comment.