Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions bounty_fix.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import os
import json

def create_yoga_warrior_ii_side_pose():
"""
Implements the Yoga Warrior II (Virabhadrasana II) side-view pose
definition for the PoseGuide catalog.
"""
pose_id = "yoga_warrior_ii_side"

# Pose definition: Joint angles and balance parameters for a side view
# Coordinates are normalized relative to the center of gravity
pose_data = {
"id": pose_id,
"name": "Yoga Warrior II (Side View)",
"category": "fitness",
"description": "Warrior II side-view focusing on hip alignment and stability.",
"joints": {
"right_hip": {"angle": 90, "position": [0, 0, 0]},
"right_knee": {"angle": 90, "position": [0.5, 0, 0]},
"right_ankle": {"angle": 0, "position": [0.5, -0.5, 0]},
"left_hip": {"angle": 180, "position": [0, 0, 0]},
"left_knee": {"angle": 180, "position": [-0.8, 0, 0