Info
This post was imported from a personal note. It may contain inside jokes, streams of consciousness, errors, and other nonsense.
A visual indication of which side of the tentacle is attached to something. This information is necessary for the inch worm maneouvre.
And here is the first step of the inch worm maneouvre. Rotating a segment to point away from the surface it was attached to.
One problem I foresee is that I’m using the previous tentacle segment (the one closer to the base) as a reference when determining where the current segment should point. On a flat surface that works but on something more interesting it’s gonna have some error. Reckon when I begin to manipulate the segment I should record its current angle or maybe the target angle.
For the “point to” instruction this was saved in the TentacleInstruction. That is probably still the way to go but now I’ll be saving these targets for multiple segments so that makes tracking them a little tricky.
Actually, I’m just realizing that the desired angle _is_ supposed to be relative to the previous segment. Otherwise the 180° switches in the next two rotations aren’t gonna make sense.
Trying to work on the second segment. This one needs to rotate in the opposite direction so that it’s 90° to the previous segment.
Getting there. I’ve got the one segment rotating counter-clockwise and the next segment rotating clockwise but you can see at one point it does a full rotation for no reason.
The reason is because the rotation of the previous segment affected the rotation of that one. It’s rotating in one direction only and because the previous segment rotated the target changed so suddenly it’s already overshot the target. All it can do is keep rotating in the same direction until it finally does hit the target.
I guess I could allow it to rotate in either direction toward the target. That should work okay because I won’t be telling it to rotate by more than 90°.
My first thought, though, was that when I rotate a segment I should rotate all of the segments between that one and the tip. That way the relative rotations stay the same. It’s basically treating it like the tentacle has stiffened so rotating the segment updates the rest of the segments, too.
The result of that is, well, confusing.
On first inspection it looks like the CCW rotation happens first and then the CW rotation but that’s not true. They do both happen at the same time but the CW rotation has twice as far to go.
Here it is slower so it’s easier to see.
So actually, even though the result is just a wound up box, this is actually what I should expect considering I’ve only implemented the first two rotations.
It’s past my cut off but go for a third?
Looks like I really need to go for the fourth and fifth to get something closer to the inch worm.
Getting there.
My code is super janky at this point. I’ve got similar code duplicated five times, each block nested in the if statement for the previous segment.
But it’s definitely going in the right direction. I feel like I have a ways to go yet.
Like you can see in the two frames below how it gets into a pretty good position for the boxy inch worm I’m modeling for now and then it just lifts up the whole thing and the effect is ruined.
The end result is going to need to be much much more dynamic. In the two frames above, the three segment endpoints near the tip should be attached to the surface. Not sure which one yet but one of those rotations will need to keep going until the tip segment has made contact with the surface. And then how do I determine the shape of the actual inch worm as it moves across? IK?
Instead of providing explicit rotations can I just rotate one segment so that it becomes attached to the surface and rotate the other so that it becomes detached from the surface and then let the ones in between sort themselves out?
I was curious how it would look if I doubled the maximum rate of rotation for the two 180° turns. The rest of the turns are 90° so they’ll all take the same amount of time to complete.
Looks much better.
Event though the segments on the right are staying closer to the surface, they’re still sliding back and forth across it.