I’ll make rest of the parts (body, femur and tibia) of the same plastic material I used on Phoenix.
Edit: Scorpion and spider gait are not so different, but I’ll try to make one. It has been hard to find some good docs about real life spider gaits.
Scorpion, yes this one:
http://i214.photobucket.com/albums/cc6/ZentaOlbaid/Scorpiongait.gif
It was a bit hard to find out how many steps there was in one cycle, but I came to 10 steps. Here is a screendump of PEP showing the steps in a scorpion sequence: Edit: For one single leg!
http://i214.photobucket.com/albums/cc6/ZentaOlbaid/IndSekvScorpionGait.jpg
As you can see in step #1 to #7 the legs are in the stance position (down to ground and walking). Legs are in the swing positions in step #8 to #10.
A small part of the VB code in PEP:
…
'Initiate start StepADR for each leg:
HFTStep = 4 'Right front leg
HSTStep = 8 'Right middle front leg
HBTStep = 2 'Right middle rear leg
HBBTStep = 6 'Right rear leg
VFTStep = 9 'Left front leg
VSTStep = 3 'Left middle front leg
VBTStep = 7 'Left middle rear leg
VBBTStep = 1 'Left rear leg
GenerateGait 'Generate gait sub routine
…
In this part of the code I’m setting the first step and the actual scorpion gait algorithm.
As you can see the Left rear leg start with the leg positioned at the starting point (ref the PEP sheet, step #1).
Hopefully you also se the pattern 1,2,3,4 and 6,7,8,9 for each tetrapod.
Edit/hint: The next step in the scorpion gait would give 2,3,4,5 and 7,8,9,10 for the same tetrapods. And the third step : 3,4,5,6 and 8,9,10,1. And the last step (#10): 10,1,2,3 and 5,6,7,8.
Got it?