Skip to content

Commit

Permalink
bug fixed in URDF visual pose conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
rctoris committed Mar 29, 2013
1 parent 76c5874 commit f2f6094
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DEVEL - **r4**
* Bug in UrdfVisual RPY to Quaternion conversion fixed (rctoris)
* Bug in UrdfVisual origin to Pose conversion fixed (rctoris)

2013-03-28 - **r3**
* URDF XML parser added (rctoris)
Expand Down
2 changes: 1 addition & 1 deletion build/roslib.js
Original file line number Diff line number Diff line change
Expand Up @@ -1505,7 +1505,7 @@ ROSLIB.UrdfVisual = function(options) {
that.origin = new ROSLIB.Pose();
} else {
// check the XYZ
var xyz = xml.getAttribute('xyz');
var xyz = origins[0].getAttribute('xyz');
if (!xyz) {
// use the default values
var position = new ROSLIB.Vector3();
Expand Down
2 changes: 1 addition & 1 deletion build/roslib.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/urdf/UrdfVisual.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ROSLIB.UrdfVisual = function(options) {
that.origin = new ROSLIB.Pose();
} else {
// check the XYZ
var xyz = xml.getAttribute('xyz');
var xyz = origins[0].getAttribute('xyz');
if (!xyz) {
// use the default values
var position = new ROSLIB.Vector3();
Expand Down

0 comments on commit f2f6094

Please sign in to comment.