Fix figure IK snapping and gate the library on a fail-hard motion checker

Three solver defects made limbs teleport, twist, or windmill: write-back
angles wrapped at ±180 and lerped the long way around; branch flips landed
on configurations the anatomical write-back cannot represent, silently
pulling pinned extremities off their pins; and the degenerate straight-limb
bend plane fell back to the camera axis instead of the anatomical anterior.
solve_limb now verifies each branch reproduces the solved end before
accepting it, resolve unwraps written-back angles toward the pose they
replace, and the degenerate plane comes from the parent's anterior axis.

render.py --check replays every exercise's full tween loop and fails hard
on six invariants (pin fidelity, continuity, wraps, authored-vs-resolved
drift, ground penetration, resolved ROM); --export refuses to ship a
failing exercise. All 66 motions re-authored or retouched to pass: honest
authored angles where pins used to override them silently, grounded feet
on the seated machines, a vertical bench-press bar path, straight-armed
child's pose, a butterfly stretch seated on the mat, and FK arms where
pins forced impossible reaches. MotionSolver.swift mirrors the solver
changes line for line, held by regenerated fixtures.

Claude-Session: https://claude.ai/code/session_01PKptrgbx74peTwHGRxBojv
This commit is contained in:
2026-07-12 00:37:23 -04:00
parent 400601283e
commit 79e75a9127
303 changed files with 3114 additions and 2272 deletions
+10 -10
View File
@@ -1,23 +1,23 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180" fill="none">
<title>Torso Twist</title>
<defs>
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="164.9" y1="90.4" x2="165.3" y2="122.2"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="165.7" y1="149.7" x2="165.7" y2="151.2"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="155.1" y1="90.4" x2="154.7" y2="122.2"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="154.3" y1="149.7" x2="154.3" y2="151.2"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
<linearGradient id="grad-leg_l-0" gradientUnits="userSpaceOnUse" x1="164.9" y1="90.4" x2="165.6" y2="122.2"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
<linearGradient id="grad-leg_l-2" gradientUnits="userSpaceOnUse" x1="166.3" y1="149.8" x2="166.3" y2="151.2"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
<linearGradient id="grad-leg_r-0" gradientUnits="userSpaceOnUse" x1="155.1" y1="90.4" x2="154.4" y2="122.2"><stop offset="0" stop-color="#3a3f4b"/><stop offset="1" stop-color="#a9afba"/></linearGradient>
<linearGradient id="grad-leg_r-2" gradientUnits="userSpaceOnUse" x1="153.7" y1="149.8" x2="153.7" y2="151.2"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
<linearGradient id="grad-arm_l-1" gradientUnits="userSpaceOnUse" x1="173.7" y1="48.9" x2="183.5" y2="61.4"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
<linearGradient id="grad-arm_r-0" gradientUnits="userSpaceOnUse" x1="153.5" y1="32.5" x2="160.6" y2="50.3"><stop offset="0" stop-color="#a9afba"/><stop offset="1" stop-color="#3a3f4b"/></linearGradient>
</defs>
<path d="M 139.0 148.3 L 139.0 159.4 L 181.0 159.4 L 181.0 148.3 Z" fill="none" stroke="#b9bec9" stroke-width="2.1" stroke-linejoin="round"/>
<g id="leg_l">
<path d="M 164.9 90.4 L 165.3 122.2" stroke="url(#grad-leg_l-0)" stroke-width="3.85" stroke-linecap="round"/>
<path d="M 165.3 122.2 L 165.7 149.7" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
<path d="M 165.7 149.7 L 165.7 151.2" stroke="url(#grad-leg_l-2)" stroke-width="3.85" stroke-linecap="round"/>
<path d="M 164.9 90.4 L 165.6 122.2" stroke="url(#grad-leg_l-0)" stroke-width="3.85" stroke-linecap="round"/>
<path d="M 165.6 122.2 L 166.3 149.8" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
<path d="M 166.3 149.8 L 166.3 151.2" stroke="url(#grad-leg_l-2)" stroke-width="3.85" stroke-linecap="round"/>
</g>
<g id="leg_r">
<path d="M 155.1 90.4 L 154.7 122.2" stroke="url(#grad-leg_r-0)" stroke-width="3.85" stroke-linecap="round"/>
<path d="M 154.7 122.2 L 154.3 149.7" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
<path d="M 154.3 149.7 L 154.3 151.2" stroke="url(#grad-leg_r-2)" stroke-width="3.85" stroke-linecap="round"/>
<path d="M 155.1 90.4 L 154.4 122.2" stroke="url(#grad-leg_r-0)" stroke-width="3.85" stroke-linecap="round"/>
<path d="M 154.4 122.2 L 153.7 149.8" stroke="#a9afba" stroke-width="3.5" stroke-linecap="round"/>
<path d="M 153.7 149.8 L 153.7 151.2" stroke="url(#grad-leg_r-2)" stroke-width="3.85" stroke-linecap="round"/>
</g>
<path id="girdle" d="M 166.5 31.1 L 160.0 31.8 L 153.5 32.5" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="pelvisBar" d="M 164.9 90.4 L 160.0 90.4 L 155.1 90.4" stroke="#0d9488" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/>

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB