Info
This post was imported from a personal note. It may contain inside jokes, streams of consciousness, errors, and other nonsense.
This is not behaving correctly. I would expect it to reach back (up) toward the dot. Not rotate back all the way from the base.
Even just looking at the first and last frames and ignoring how it got there.
Does this algorithm try to preserve the relative rotations of each joint? I wonder if I can make the cost of rotating the joints closer to the base more expensive and those closer to the tip cheaper.
Or should I model it in terms of how efficient it would be to make the movement in water?
For now, trying to understand what the algorithm is doing.
Changing the tentacle segment lengths made it worse because now the segments near the base have an outsized impact on where the tentacle goes. I’m guessing that’s what’s gone wrong here.
In fact, the basic IK implementation converges on a horrible solution. Crazy.
Alright. New respect for the problem. (-:
On the bright side, it’s now clear to me that the two algorithms are in fact not equivalent.
Yeah, since each step moves the endpoint a little closer toward the target, it preserves the rotations of the segments closer to the base as well.
I think I need a more global approach. Maybe segment rotation constraints that get relaxed over time?
First and last frame from the CCD algorithm above.
I would have expected a solution like this:
Constraining the rate at which the segments can turn (limit to 15° at a time) looks like this:
Not really helpful, tbh.
May be better to constrain so that the angle isn’t too different from the parent angle.
Well, it’s the first time the solution is arcing in the direction I wanted. A little surprised to have that reverse angle between the 2nd and 3rd segments but.
I fixed the base as well. Without fixing the base it looks like this:
Actually, I don’t know why it never gets closer to the target. The base should be free to rotate wherever it wants but… does not.
Anyway, I like the second example. I made an interactive demo to see how it performs as I click to set the target point. (6f4c85ce9691abfa0106ebf7d6da9e17ad132c6c)
It seems to do pretty good. There are a lot of unreachable areas with a tentacle angle constraint of 30°, though. And considering how flexible tentacles are, it doesn’t seem very reasonable. Need to step away for a bit and figure out what I’m going for here.
Would be interesting to map the unreachable areas but not terribly useful just now.