Closed igorrecioh closed 5 years ago
It is from this new MoveIt commit here https://github.com/ros-planning/moveit_tutorials/pull/255
This should be easily fixed by replacing all occurrences of Affine3d
with Isometry3d
Running this in another repository of mine fixed the issue:
find ./ -type f -exec sed -i 's/Affine3d/Isometry3d/g' {} \;
@igorrecioh I think those instructions are outdated, catkin_make
is no longer used as far as I know, try using catkin tools, so the build command would be catkin build
@igorrecioh are you building moveit from source?
Sorry, wrong commit. Check this one ros-planning/moveit#1096
I submitted a PR that fixes these errors #235 onto melodic-migration
Hi @BrettHemes and @jrgnicho! Sorry for not updating this issue but yesterday I was able to solve it by replacing Affine3d with Isometry3d as @BrettHemes commented. I forked Descartes and I was planning to submit also a PR with these fixes! BTW, thanks a lot for your help!
I have seen that the changes needed for this have been merged! Thanks! This issue can be closed!
Hi all, Environment: Ubuntu 18.04 with ROS Melodic.
I am following the instructions provided here but cloning the melodic-migration branch.
When I try
I obtain this errors:
Seems that there is something wrong with
I have tried searching something related but no success. Could anyone give help with this? Thank you in advance!