Inverse kinematic solver generation/integration in Python
Hi community,
I am trying to write my own ik solver using python. Here, I found an example of a custon ik plugin implemented in c++. My question is how it differs when the plugin is written in python. Below the steps that I planned:
- Download the plugin from the link above.
- In ur_kinematics/src change ur_moveit_plugin.cpp with my_ik_solver_plugin.py
- catkin_make install
- In kinematics.yaml file change the solver to my solver...
But how should the CMakeLists.txt be changed ? Do I have to care about the CMakeLists when I write the plugin in python?