@franzenzenhofer/asanakit 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +153 -0
- package/dist/anatomy/muscles.d.ts +55 -0
- package/dist/anatomy/muscles.d.ts.map +1 -0
- package/dist/anatomy/muscles.js +79 -0
- package/dist/anatomy/muscles.js.map +1 -0
- package/dist/anatomy/validate.d.ts +11 -0
- package/dist/anatomy/validate.d.ts.map +1 -0
- package/dist/anatomy/validate.js +94 -0
- package/dist/anatomy/validate.js.map +1 -0
- package/dist/cli/commands/export.d.ts +3 -0
- package/dist/cli/commands/export.d.ts.map +1 -0
- package/dist/cli/commands/export.js +45 -0
- package/dist/cli/commands/export.js.map +1 -0
- package/dist/cli/commands/info.d.ts +3 -0
- package/dist/cli/commands/info.d.ts.map +1 -0
- package/dist/cli/commands/info.js +101 -0
- package/dist/cli/commands/info.js.map +1 -0
- package/dist/cli/commands/render.d.ts +3 -0
- package/dist/cli/commands/render.d.ts.map +1 -0
- package/dist/cli/commands/render.js +103 -0
- package/dist/cli/commands/render.js.map +1 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +31 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/resolve.d.ts +12 -0
- package/dist/cli/resolve.d.ts.map +1 -0
- package/dist/cli/resolve.js +46 -0
- package/dist/cli/resolve.js.map +1 -0
- package/dist/core/angles.d.ts +12 -0
- package/dist/core/angles.d.ts.map +1 -0
- package/dist/core/angles.js +27 -0
- package/dist/core/angles.js.map +1 -0
- package/dist/core/rig.d.ts +8 -0
- package/dist/core/rig.d.ts.map +1 -0
- package/dist/core/rig.js +97 -0
- package/dist/core/rig.js.map +1 -0
- package/dist/core/skeleton.d.ts +17 -0
- package/dist/core/skeleton.d.ts.map +1 -0
- package/dist/core/skeleton.js +144 -0
- package/dist/core/skeleton.js.map +1 -0
- package/dist/core/types.d.ts +105 -0
- package/dist/core/types.d.ts.map +1 -0
- package/dist/core/types.js +47 -0
- package/dist/core/types.js.map +1 -0
- package/dist/core/vec2.d.ts +19 -0
- package/dist/core/vec2.d.ts.map +1 -0
- package/dist/core/vec2.js +41 -0
- package/dist/core/vec2.js.map +1 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -0
- package/dist/library/index.d.ts +27 -0
- package/dist/library/index.d.ts.map +1 -0
- package/dist/library/index.js +75 -0
- package/dist/library/index.js.map +1 -0
- package/dist/model/index.d.ts +4 -0
- package/dist/model/index.d.ts.map +1 -0
- package/dist/model/index.js +4 -0
- package/dist/model/index.js.map +1 -0
- package/dist/model/parse.d.ts +12 -0
- package/dist/model/parse.d.ts.map +1 -0
- package/dist/model/parse.js +43 -0
- package/dist/model/parse.js.map +1 -0
- package/dist/model/pose.d.ts +11 -0
- package/dist/model/pose.d.ts.map +1 -0
- package/dist/model/pose.js +26 -0
- package/dist/model/pose.js.map +1 -0
- package/dist/model/schema.d.ts +1122 -0
- package/dist/model/schema.d.ts.map +1 -0
- package/dist/model/schema.js +178 -0
- package/dist/model/schema.js.map +1 -0
- package/dist/render/anatomy.d.ts +10 -0
- package/dist/render/anatomy.d.ts.map +1 -0
- package/dist/render/anatomy.js +77 -0
- package/dist/render/anatomy.js.map +1 -0
- package/dist/render/annotations.d.ts +9 -0
- package/dist/render/annotations.d.ts.map +1 -0
- package/dist/render/annotations.js +185 -0
- package/dist/render/annotations.js.map +1 -0
- package/dist/render/context.d.ts +16 -0
- package/dist/render/context.d.ts.map +1 -0
- package/dist/render/context.js +2 -0
- package/dist/render/context.js.map +1 -0
- package/dist/render/figure.d.ts +8 -0
- package/dist/render/figure.d.ts.map +1 -0
- package/dist/render/figure.js +138 -0
- package/dist/render/figure.js.map +1 -0
- package/dist/render/index.d.ts +7 -0
- package/dist/render/index.d.ts.map +1 -0
- package/dist/render/index.js +7 -0
- package/dist/render/index.js.map +1 -0
- package/dist/render/project.d.ts +18 -0
- package/dist/render/project.d.ts.map +1 -0
- package/dist/render/project.js +35 -0
- package/dist/render/project.js.map +1 -0
- package/dist/render/props.d.ts +9 -0
- package/dist/render/props.d.ts.map +1 -0
- package/dist/render/props.js +178 -0
- package/dist/render/props.js.map +1 -0
- package/dist/render/raster.d.ts +19 -0
- package/dist/render/raster.d.ts.map +1 -0
- package/dist/render/raster.js +39 -0
- package/dist/render/raster.js.map +1 -0
- package/dist/render/scene.d.ts +26 -0
- package/dist/render/scene.d.ts.map +1 -0
- package/dist/render/scene.js +144 -0
- package/dist/render/scene.js.map +1 -0
- package/dist/render/sheet.d.ts +20 -0
- package/dist/render/sheet.d.ts.map +1 -0
- package/dist/render/sheet.js +74 -0
- package/dist/render/sheet.js.map +1 -0
- package/dist/render/styles.d.ts +77 -0
- package/dist/render/styles.d.ts.map +1 -0
- package/dist/render/styles.js +122 -0
- package/dist/render/styles.js.map +1 -0
- package/dist/render/svg.d.ts +19 -0
- package/dist/render/svg.d.ts.map +1 -0
- package/dist/render/svg.js +40 -0
- package/dist/render/svg.js.map +1 -0
- package/dist/standards/keypoints.d.ts +31 -0
- package/dist/standards/keypoints.d.ts.map +1 -0
- package/dist/standards/keypoints.js +118 -0
- package/dist/standards/keypoints.js.map +1 -0
- package/docs/AUTHORING.md +144 -0
- package/package.json +94 -0
- package/poses/surf/bottom-turn.pose.yaml +47 -0
- package/poses/surf/cutback.pose.yaml +47 -0
- package/poses/surf/duck-dive.pose.yaml +47 -0
- package/poses/surf/noseride.pose.yaml +48 -0
- package/poses/surf/paddling.pose.yaml +48 -0
- package/poses/surf/pop-up.pose.yaml +47 -0
- package/poses/surf/takeoff.pose.yaml +47 -0
- package/poses/surf/tube-stance.pose.yaml +47 -0
- package/poses/yoga/ashtanga/adho-mukha-svanasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/ardha-uttanasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/baddha-konasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/balasana.pose.yaml +43 -0
- package/poses/yoga/ashtanga/chaturanga-dandasana.pose.yaml +41 -0
- package/poses/yoga/ashtanga/dandasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/halasana.pose.yaml +43 -0
- package/poses/yoga/ashtanga/janu-sirsasana-a.pose.yaml +42 -0
- package/poses/yoga/ashtanga/karnapidasana.pose.yaml +43 -0
- package/poses/yoga/ashtanga/marichyasana-a.pose.yaml +42 -0
- package/poses/yoga/ashtanga/marichyasana-c.pose.yaml +42 -0
- package/poses/yoga/ashtanga/matsyasana.pose.yaml +43 -0
- package/poses/yoga/ashtanga/navasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/padahastasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/padangusthasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/padmasana.pose.yaml +43 -0
- package/poses/yoga/ashtanga/parsvottanasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/paschimottanasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/prasarita-padottanasana-a.pose.yaml +46 -0
- package/poses/yoga/ashtanga/prasarita-padottanasana-c.pose.yaml +46 -0
- package/poses/yoga/ashtanga/primary.seq.yaml +74 -0
- package/poses/yoga/ashtanga/purvottanasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/salamba-sarvangasana.pose.yaml +43 -0
- package/poses/yoga/ashtanga/samasthiti.pose.yaml +29 -0
- package/poses/yoga/ashtanga/savasana.pose.yaml +43 -0
- package/poses/yoga/ashtanga/setu-bandhasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/sirsasana.pose.yaml +43 -0
- package/poses/yoga/ashtanga/supta-padangusthasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/upavistha-konasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/urdhva-dhanurasana.pose.yaml +43 -0
- package/poses/yoga/ashtanga/urdhva-hastasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/urdhva-mukha-svanasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/utkatasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/uttanasana.pose.yaml +42 -0
- package/poses/yoga/ashtanga/utthita-parsvakonasana.pose.yaml +44 -0
- package/poses/yoga/ashtanga/utthita-trikonasana.pose.yaml +44 -0
- package/poses/yoga/ashtanga/virabhadrasana-a.pose.yaml +42 -0
- package/poses/yoga/ashtanga/virabhadrasana-b.pose.yaml +42 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
asanakit: 1
|
|
2
|
+
id: urdhva-dhanurasana
|
|
3
|
+
name: Upward Bow
|
|
4
|
+
sanskrit: Ūrdhva Dhanurāsana
|
|
5
|
+
english: Upward Bow / Wheel
|
|
6
|
+
discipline: yoga
|
|
7
|
+
family: backbend
|
|
8
|
+
difficulty: 4
|
|
9
|
+
description: A deep backbend. Hands and feet press the floor, the hips and chest lift into a high arc, the head hangs back between the arms.
|
|
10
|
+
tags: [ashtanga, finishing, backbend]
|
|
11
|
+
breath: inhale
|
|
12
|
+
drishti: nasagrai
|
|
13
|
+
cues:
|
|
14
|
+
- Press evenly through hands and feet to lift the chest
|
|
15
|
+
- Keep the knees tracking over the feet, do not splay
|
|
16
|
+
contact: [toeL, toeR, handTipL, handTipR]
|
|
17
|
+
figure:
|
|
18
|
+
view: side
|
|
19
|
+
grounded: true
|
|
20
|
+
root:
|
|
21
|
+
rotation: 195
|
|
22
|
+
world:
|
|
23
|
+
pelvis: 195
|
|
24
|
+
spine: 210
|
|
25
|
+
neck: 235
|
|
26
|
+
head: 250
|
|
27
|
+
upperArmL: -88
|
|
28
|
+
upperArmR: -88
|
|
29
|
+
forearmL: -88
|
|
30
|
+
forearmR: -88
|
|
31
|
+
handL: 0
|
|
32
|
+
handR: 0
|
|
33
|
+
thighL: -50
|
|
34
|
+
thighR: -50
|
|
35
|
+
shinL: -110
|
|
36
|
+
shinR: -110
|
|
37
|
+
footL: -15
|
|
38
|
+
footR: -15
|
|
39
|
+
props:
|
|
40
|
+
- type: mat
|
|
41
|
+
muscles:
|
|
42
|
+
engaged: [gluteus, erectorSpinae, deltoid, triceps, quadriceps]
|
|
43
|
+
stretched: [pectoralis, rectusAbdominis, hipFlexors]
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
asanakit: 1
|
|
2
|
+
id: urdhva-hastasana
|
|
3
|
+
name: Upward Salute
|
|
4
|
+
sanskrit: Ūrdhva Hastāsana
|
|
5
|
+
english: Upward Salute
|
|
6
|
+
discipline: yoga
|
|
7
|
+
family: standing
|
|
8
|
+
difficulty: 1
|
|
9
|
+
description: First movement of Surya Namaskara. Arms sweep overhead, palms meet, gaze to the thumbs.
|
|
10
|
+
tags: [ashtanga, surya-namaskara-a, standing, backbend]
|
|
11
|
+
breath: inhale
|
|
12
|
+
drishti: angustha-ma-dyai
|
|
13
|
+
cues:
|
|
14
|
+
- Sweep the arms wide and up on the inhale
|
|
15
|
+
- Lift the chest, keep the ribs knitted
|
|
16
|
+
contact: [toeL, toeR]
|
|
17
|
+
figure:
|
|
18
|
+
view: side
|
|
19
|
+
grounded: true
|
|
20
|
+
root:
|
|
21
|
+
rotation: 93
|
|
22
|
+
world:
|
|
23
|
+
thighL: -90
|
|
24
|
+
thighR: -90
|
|
25
|
+
shinL: -90
|
|
26
|
+
shinR: -90
|
|
27
|
+
footL: -18
|
|
28
|
+
footR: -18
|
|
29
|
+
spine: 97
|
|
30
|
+
neck: 105
|
|
31
|
+
head: 110
|
|
32
|
+
upperArmL: 100
|
|
33
|
+
upperArmR: 100
|
|
34
|
+
forearmL: 98
|
|
35
|
+
forearmR: 98
|
|
36
|
+
handL: 96
|
|
37
|
+
handR: 96
|
|
38
|
+
props:
|
|
39
|
+
- type: mat
|
|
40
|
+
muscles:
|
|
41
|
+
engaged: [deltoid, erectorSpinae, quadriceps]
|
|
42
|
+
stretched: [rectusAbdominis, latissimus]
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
asanakit: 1
|
|
2
|
+
id: urdhva-mukha-svanasana
|
|
3
|
+
name: Upward-Facing Dog
|
|
4
|
+
sanskrit: Ūrdhva Mukha Śvānāsana
|
|
5
|
+
english: Upward-Facing Dog
|
|
6
|
+
discipline: yoga
|
|
7
|
+
family: backbend
|
|
8
|
+
difficulty: 3
|
|
9
|
+
description: Arms straight, chest open, thighs lifted off the floor. Only the hands and the tops of the feet touch down.
|
|
10
|
+
tags: [ashtanga, surya-namaskara-a, backbend, arm-support]
|
|
11
|
+
breath: inhale
|
|
12
|
+
drishti: urdhva
|
|
13
|
+
cues:
|
|
14
|
+
- Press the floor away, lift the thighs
|
|
15
|
+
- Draw the chest through the arms, shoulders back
|
|
16
|
+
contact: [toeL, toeR, handTipL, handTipR]
|
|
17
|
+
figure:
|
|
18
|
+
view: side
|
|
19
|
+
grounded: true
|
|
20
|
+
root:
|
|
21
|
+
rotation: 30
|
|
22
|
+
world:
|
|
23
|
+
spine: 55
|
|
24
|
+
neck: 80
|
|
25
|
+
head: 105
|
|
26
|
+
thighL: -168
|
|
27
|
+
thighR: -168
|
|
28
|
+
shinL: -172
|
|
29
|
+
shinR: -172
|
|
30
|
+
footL: -160
|
|
31
|
+
footR: -160
|
|
32
|
+
upperArmL: -80
|
|
33
|
+
upperArmR: -80
|
|
34
|
+
forearmL: -86
|
|
35
|
+
forearmR: -86
|
|
36
|
+
handL: 0
|
|
37
|
+
handR: 0
|
|
38
|
+
props:
|
|
39
|
+
- type: mat
|
|
40
|
+
muscles:
|
|
41
|
+
engaged: [erectorSpinae, triceps, gluteus, deltoid]
|
|
42
|
+
stretched: [rectusAbdominis, pectoralis, hipFlexors]
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
asanakit: 1
|
|
2
|
+
id: utkatasana
|
|
3
|
+
name: Chair Pose
|
|
4
|
+
sanskrit: Utkaṭāsana
|
|
5
|
+
english: Fierce Pose
|
|
6
|
+
discipline: yoga
|
|
7
|
+
family: standing
|
|
8
|
+
difficulty: 2
|
|
9
|
+
description: Knees bend deeply, the hips sit back as if onto a chair, the torso leans forward and the arms reach overhead in line with the spine.
|
|
10
|
+
tags: [ashtanga, surya-namaskara-b, standing]
|
|
11
|
+
breath: inhale
|
|
12
|
+
drishti: angustha-ma-dyai
|
|
13
|
+
cues:
|
|
14
|
+
- Sit the hips back, keep the knees over the ankles
|
|
15
|
+
- Reach the arms up alongside the ears
|
|
16
|
+
contact: [toeL, toeR]
|
|
17
|
+
figure:
|
|
18
|
+
view: side
|
|
19
|
+
grounded: true
|
|
20
|
+
root:
|
|
21
|
+
rotation: 70
|
|
22
|
+
world:
|
|
23
|
+
thighL: -30
|
|
24
|
+
thighR: -30
|
|
25
|
+
shinL: -100
|
|
26
|
+
shinR: -100
|
|
27
|
+
footL: -18
|
|
28
|
+
footR: -18
|
|
29
|
+
spine: 65
|
|
30
|
+
neck: 70
|
|
31
|
+
head: 72
|
|
32
|
+
upperArmL: 78
|
|
33
|
+
upperArmR: 78
|
|
34
|
+
forearmL: 80
|
|
35
|
+
forearmR: 80
|
|
36
|
+
handL: 82
|
|
37
|
+
handR: 82
|
|
38
|
+
props:
|
|
39
|
+
- type: mat
|
|
40
|
+
muscles:
|
|
41
|
+
engaged: [quadriceps, gluteus, erectorSpinae, deltoid]
|
|
42
|
+
stretched: [gastrocnemius, latissimus]
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
asanakit: 1
|
|
2
|
+
id: uttanasana
|
|
3
|
+
name: Standing Forward Fold
|
|
4
|
+
sanskrit: Uttānāsana
|
|
5
|
+
english: Intense Stretch Pose
|
|
6
|
+
discipline: yoga
|
|
7
|
+
family: standing
|
|
8
|
+
difficulty: 2
|
|
9
|
+
description: Fold from the hips with straight legs, hands to the floor beside the feet, head toward the shins.
|
|
10
|
+
tags: [ashtanga, surya-namaskara-a, standing, forward-fold]
|
|
11
|
+
breath: exhale
|
|
12
|
+
drishti: nasagrai
|
|
13
|
+
cues:
|
|
14
|
+
- Hinge from the hip joints, not the waist
|
|
15
|
+
- Lengthen the spine before rounding
|
|
16
|
+
contact: [toeL, toeR, handTipL, handTipR]
|
|
17
|
+
figure:
|
|
18
|
+
view: side
|
|
19
|
+
grounded: true
|
|
20
|
+
root:
|
|
21
|
+
rotation: -70
|
|
22
|
+
world:
|
|
23
|
+
thighL: -90
|
|
24
|
+
thighR: -90
|
|
25
|
+
shinL: -90
|
|
26
|
+
shinR: -90
|
|
27
|
+
footL: -18
|
|
28
|
+
footR: -18
|
|
29
|
+
spine: -80
|
|
30
|
+
neck: -90
|
|
31
|
+
head: -95
|
|
32
|
+
upperArmL: -95
|
|
33
|
+
upperArmR: -95
|
|
34
|
+
forearmL: -50
|
|
35
|
+
forearmR: -50
|
|
36
|
+
handL: -8
|
|
37
|
+
handR: -8
|
|
38
|
+
props:
|
|
39
|
+
- type: mat
|
|
40
|
+
muscles:
|
|
41
|
+
engaged: [quadriceps, rectusAbdominis]
|
|
42
|
+
stretched: [hamstrings, erectorSpinae, gastrocnemius]
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
asanakit: 1
|
|
2
|
+
id: utthita-parsvakonasana
|
|
3
|
+
name: Extended Side Angle
|
|
4
|
+
sanskrit: Utthita Pārśvakoṇāsana
|
|
5
|
+
english: Extended Side Angle Pose
|
|
6
|
+
discipline: yoga
|
|
7
|
+
family: standing
|
|
8
|
+
difficulty: 3
|
|
9
|
+
description: Legs wide, the front knee bends to a right angle, the bottom hand plants on the floor outside the front foot and the top arm reaches over the ear in one long line from the back heel to the fingertips. Held five breaths.
|
|
10
|
+
tags: [ashtanga, standing, side-bend, primary-series]
|
|
11
|
+
breath: exhale
|
|
12
|
+
drishti: hastagrai
|
|
13
|
+
cues:
|
|
14
|
+
- Front shin vertical, knee stacked over the ankle
|
|
15
|
+
- Press the back heel down and stretch the top arm over the ear
|
|
16
|
+
contact: [toeL, toeR, handTipL]
|
|
17
|
+
figure:
|
|
18
|
+
view: front
|
|
19
|
+
grounded: true
|
|
20
|
+
root:
|
|
21
|
+
rotation: 30
|
|
22
|
+
world:
|
|
23
|
+
hipL: 0
|
|
24
|
+
hipR: 180
|
|
25
|
+
thighL: 0
|
|
26
|
+
shinL: -90
|
|
27
|
+
footL: -10
|
|
28
|
+
thighR: -150
|
|
29
|
+
shinR: -150
|
|
30
|
+
footR: -170
|
|
31
|
+
spine: 30
|
|
32
|
+
neck: 35
|
|
33
|
+
head: 55
|
|
34
|
+
upperArmL: -55
|
|
35
|
+
forearmL: -55
|
|
36
|
+
handL: -55
|
|
37
|
+
upperArmR: 30
|
|
38
|
+
forearmR: 30
|
|
39
|
+
handR: 30
|
|
40
|
+
props:
|
|
41
|
+
- type: mat
|
|
42
|
+
muscles:
|
|
43
|
+
engaged: [quadriceps, gluteus, obliques, deltoid]
|
|
44
|
+
stretched: [adductors, latissimus, obliques, hipFlexors]
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
asanakit: 1
|
|
2
|
+
id: utthita-trikonasana
|
|
3
|
+
name: Extended Triangle
|
|
4
|
+
sanskrit: Utthita Trikoṇāsana
|
|
5
|
+
english: Extended Triangle Pose
|
|
6
|
+
discipline: yoga
|
|
7
|
+
family: standing
|
|
8
|
+
difficulty: 2
|
|
9
|
+
description: Legs wide and straight, the torso tilts sideways over the front leg, the bottom hand catches the big toe and the top arm reaches straight up. Held five breaths.
|
|
10
|
+
tags: [ashtanga, standing, side-bend, primary-series]
|
|
11
|
+
breath: exhale
|
|
12
|
+
drishti: hastagrai
|
|
13
|
+
cues:
|
|
14
|
+
- Reach sideways out of the waist before you tilt down
|
|
15
|
+
- Stack both shoulders in one line, chest open to the side
|
|
16
|
+
contact: [toeL, toeR, handTipL]
|
|
17
|
+
figure:
|
|
18
|
+
view: front
|
|
19
|
+
grounded: true
|
|
20
|
+
root:
|
|
21
|
+
rotation: 25
|
|
22
|
+
world:
|
|
23
|
+
hipL: 0
|
|
24
|
+
hipR: 180
|
|
25
|
+
thighL: -45
|
|
26
|
+
shinL: -45
|
|
27
|
+
footL: -20
|
|
28
|
+
thighR: -135
|
|
29
|
+
shinR: -135
|
|
30
|
+
footR: -160
|
|
31
|
+
spine: 25
|
|
32
|
+
neck: 30
|
|
33
|
+
head: 55
|
|
34
|
+
upperArmL: -80
|
|
35
|
+
forearmL: -80
|
|
36
|
+
handL: -80
|
|
37
|
+
upperArmR: 100
|
|
38
|
+
forearmR: 100
|
|
39
|
+
handR: 100
|
|
40
|
+
props:
|
|
41
|
+
- type: mat
|
|
42
|
+
muscles:
|
|
43
|
+
engaged: [quadriceps, obliques, deltoid, erectorSpinae]
|
|
44
|
+
stretched: [hamstrings, adductors, obliques, latissimus]
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
asanakit: 1
|
|
2
|
+
id: virabhadrasana-a
|
|
3
|
+
name: Warrior I
|
|
4
|
+
sanskrit: Vīrabhadrāsana A
|
|
5
|
+
english: Warrior I
|
|
6
|
+
discipline: yoga
|
|
7
|
+
family: standing
|
|
8
|
+
difficulty: 3
|
|
9
|
+
description: A long lunge. The front knee bends over the ankle, the back leg drives straight to a grounded heel, the chest lifts and the arms reach overhead.
|
|
10
|
+
tags: [ashtanga, standing, lunge, backbend]
|
|
11
|
+
breath: inhale
|
|
12
|
+
drishti: angustha-ma-dyai
|
|
13
|
+
cues:
|
|
14
|
+
- Front knee tracks over the ankle, back leg straight and strong
|
|
15
|
+
- Lift the chest, reach the fingertips up
|
|
16
|
+
contact: [toeL, toeR]
|
|
17
|
+
figure:
|
|
18
|
+
view: side
|
|
19
|
+
grounded: true
|
|
20
|
+
root:
|
|
21
|
+
rotation: 88
|
|
22
|
+
world:
|
|
23
|
+
thighL: -15
|
|
24
|
+
shinL: -95
|
|
25
|
+
footL: -18
|
|
26
|
+
thighR: -142
|
|
27
|
+
shinR: -142
|
|
28
|
+
footR: -15
|
|
29
|
+
spine: 92
|
|
30
|
+
neck: 97
|
|
31
|
+
head: 100
|
|
32
|
+
upperArmL: 99
|
|
33
|
+
upperArmR: 99
|
|
34
|
+
forearmL: 97
|
|
35
|
+
forearmR: 97
|
|
36
|
+
handL: 95
|
|
37
|
+
handR: 95
|
|
38
|
+
props:
|
|
39
|
+
- type: mat
|
|
40
|
+
muscles:
|
|
41
|
+
engaged: [quadriceps, gluteus, erectorSpinae, deltoid]
|
|
42
|
+
stretched: [hipFlexors, gastrocnemius, pectoralis]
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
asanakit: 1
|
|
2
|
+
id: virabhadrasana-b
|
|
3
|
+
name: Warrior II
|
|
4
|
+
sanskrit: Vīrabhadrāsana B
|
|
5
|
+
english: Warrior II
|
|
6
|
+
discipline: yoga
|
|
7
|
+
family: standing
|
|
8
|
+
difficulty: 3
|
|
9
|
+
description: A wide stance. The front knee bends to a right angle stacked over the ankle, the back leg stays straight, and the arms extend level with the floor.
|
|
10
|
+
tags: [ashtanga, standing, lunge, hip-opener]
|
|
11
|
+
breath: exhale
|
|
12
|
+
drishti: hastagrai
|
|
13
|
+
cues:
|
|
14
|
+
- Bend the front knee until the shin is vertical
|
|
15
|
+
- Extend evenly through both fingertips, shoulders down
|
|
16
|
+
contact: [toeL, toeR]
|
|
17
|
+
figure:
|
|
18
|
+
view: front
|
|
19
|
+
grounded: true
|
|
20
|
+
root:
|
|
21
|
+
rotation: 90
|
|
22
|
+
world:
|
|
23
|
+
thighL: -10
|
|
24
|
+
shinL: -90
|
|
25
|
+
footL: -20
|
|
26
|
+
thighR: -144
|
|
27
|
+
shinR: -144
|
|
28
|
+
footR: -165
|
|
29
|
+
spine: 90
|
|
30
|
+
neck: 90
|
|
31
|
+
head: 90
|
|
32
|
+
upperArmL: 0
|
|
33
|
+
forearmL: 0
|
|
34
|
+
handL: 0
|
|
35
|
+
upperArmR: 180
|
|
36
|
+
forearmR: 180
|
|
37
|
+
handR: 180
|
|
38
|
+
props:
|
|
39
|
+
- type: mat
|
|
40
|
+
muscles:
|
|
41
|
+
engaged: [quadriceps, gluteus, adductors, deltoid]
|
|
42
|
+
stretched: [adductors, hipFlexors, pectoralis]
|