Skip to main content

Tentacle IK

·218 words·2 mins

Info

This post was imported from a personal note. It may contain inside jokes, streams of consciousness, errors, and other nonsense.

Inverse kinematics for tentacles. I was getting confused working on this in MovementSketch and so broke out a side sketch to simplify things. Good thing! It’s complicated.

Part of the confusion is from reference frames. I decided to have a tentacle base position (the square at the center) and then each segment stores its endpoint relative to the base position, a redundant value calculated by iterating through each tentacle.

Looks like IK needs to be run a few times to come to a solution that actually touches the target point. The lonesome circle is a target defined by mouse click. image On the first step it gets fairly close. image On the second step it’s much closer. image That’s probably good enough but here’s the third step. image Now target a new point. image First step is close again but I’m already unhappy with the acute angle we’re getting there. image Second step gets close enough that we’re probably good to go. image Next I want to see if I can add angle constraints.

After updating all the angles, what if I run through the segments again and constrain them to be obtuse? Will IK always resolve? Will it resolve in a satisfying way?