C ++ Inverse kinematic algorithm / library, which includes a method for IK, when the position of several nodes in the chain is known

I am looking for an ideal C ++ library / code (but if not at least one 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 is greatly appreciated.

+5
source share
1 answer

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

+1
source

All Articles