Mobility · Back
Touch your toes
Touch your toes is a beginner-level mobility movement targeting the hamstrings, written in Posecode, a small open-source language that LLMs like ChatGPT, Claude, and Gemini can write to describe human movement as text. Every joint angle below is hard-clamped to a safe range of motion.
▶ Open Touch your toes in the playground →How to do it
- Fold2.5s · ease-in-out Hinge from the hips, bend the knees, and reach your hands down toward your ankles
- Rise2s · ease-out Stack the spine back up to standing tall
The .posecode source
This is the exact text an LLM writes to produce the animation above: phases and joint angles, not 3D transforms.
posecode stretch "Touch your toes"
rig humanoid
pose start = standing
step "Fold" 2.5s ease-in-out:
pelvis: hinge 120
knees: flex 60
neck: flex 15
reach: hand_left ankle_left
reach: hand_right ankle_right
ground-lock: feet
cue "Hinge from the hips, bend the knees, and reach your hands down toward your ankles"
step "Rise" 2s ease-out:
pelvis: hinge 0
knees: flex 0
neck: flex 0
ground-lock: feet
cue "Stack the spine back up to standing tall"
repeat 3