I want to know how to calculate rotation angles using inverse kinematics. I am planning on using this for real time 3d animation. Anyone know of some good literature that details a specific solution?
closed as off topic by Cameron MacFarland, John Conde, DocMax, InfantPro'Aravind', Jan Hančič Dec 11 '12 at 6:42
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
The following resources survey some popular numerical methods for inverse kinematics problems:
Buss's survey may be particularly interesting, because it explicitly discusses multiple limbs. IK systems for animation must generally support multiple, possibly conflicting, constraints. For example, one arm can hold on to a rail while the other arm reaches for a target.
6 dof industrial robots generally have closed form IK solutions, as mentioned by Andrew and explained in e.g. Craig: Introduction to Robotics. More useful for figure animation are methods for 7 dof human-like arms and legs: |
|||
|
|
|
From wikipedia:
|
|||
|
|
|
Thomas Kane is one of the world's authorities on dynamics. I'd recommend his "Dynamics" text highly, but it's not for the faint of heart or weak at mathematics. |
|||||||
|
|
You can look at:
Also look at https://github.com/kirillv/cpp-inverse-kinematics-library It shows some algorithms (Jacobian Transpose , Jacobian Pseudoinverse , DLS) in C++, and solves IK for robots described in DH. |
|||
|
|