Physiotherapy · Neck
Neck rotation
Neck rotation is a beginner-level physiotherapy movement targeting the neck, 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 Neck rotation in the playground →How to do it
- Look right2s · ease-in-out Turn slowly to look over the right shoulder
- Look left2.4s · ease-in-out Pass through center and turn to the left
- Center1.6s · ease-out Return the head to neutral
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 "Neck rotation"
rig humanoid
pose start = standing
step "Look right" 2s ease-in-out:
neck: rotate-out 60
ground-lock: feet
cue "Turn slowly to look over the right shoulder"
step "Look left" 2.4s ease-in-out:
neck: rotate-in 60
ground-lock: feet
cue "Pass through center and turn to the left"
step "Center" 1.6s ease-out:
neck: rotate-in 0
ground-lock: feet
cue "Return the head to neutral"
repeat 4