Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ Inverse Kinematic Algorithm / library which includes method for IK when position of several nodes in chain known

I am looking for ideally a c++ library / code (but if not at least an algorithm) that solves the IK problem for a given chain of n nodes, of which estimates for the position of k nodes (where k < n) in the chain are known.

Any help much appreciated.

like image 450
oracle3001 Avatar asked Nov 14 '22 03:11

oracle3001


1 Answers

This is possible using an iterative IK algorithm, such as Cyclic Coordinate Decent.

like image 71
Alex Peck Avatar answered Dec 10 '22 08:12

Alex Peck