Athlete's muscle activation visualized via thermal x-ray HUD

A 2x2 grid shows four distinct athletic actions with translucent x-ray bodies, highlighting primary muscles in thermal red-yellow glow. Cyan holographic telemetry overlays provide coaching tips, joint angles, and ground reaction forces.

Prompt

query BuildSportsScienceHUD($ actions: [String] = ["[ACTION_1]", "[ACTION_2]", "[ACTION_3]", "[ACTION_4]"]) {   Canvas(layout: "2x2 Grid", background: "Pitch Black") {     ForEach($ actions) { action ->       RenderQuadrant {         Subject {           pose: action           effect: "Translucent X-Ray" activation_map: fetch_primary_muscles(action, style: "Thermal Red/Yellow Glow")         }         Telemetry_HUD(color: "Cyan Holographic") {           coaching: fetch_pro_tips(action)           kinematics: fetch_joint_angles(action, display: "Circular Callouts")           forces: fetch_ground_reaction(action, display: "Floor Heatmap + Vectors")         }       }     }   } }
Published: May 21, 2026 by