-
Notifications
You must be signed in to change notification settings - Fork 154
Home
Pierre Manceron edited this page Dec 18, 2015
·
25 revisions
This tutorial will introduce you to the basic concepts of IKPy. You can test a live version in the
The chain is the main object you will work with : It is a list of links you can move
One great feature of IKPy is that you can create your chains from a URDF file. If your file is URDF-compliant, it will work!
my_chain = Chain.from_urdf_file("poppy_ergo.URDF")
my_chain.forward_kinematics(joints_vector)
my_chain.inverse_kinematics([1, 1, 1])