@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.
Files changed (174) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +153 -0
  3. package/dist/anatomy/muscles.d.ts +55 -0
  4. package/dist/anatomy/muscles.d.ts.map +1 -0
  5. package/dist/anatomy/muscles.js +79 -0
  6. package/dist/anatomy/muscles.js.map +1 -0
  7. package/dist/anatomy/validate.d.ts +11 -0
  8. package/dist/anatomy/validate.d.ts.map +1 -0
  9. package/dist/anatomy/validate.js +94 -0
  10. package/dist/anatomy/validate.js.map +1 -0
  11. package/dist/cli/commands/export.d.ts +3 -0
  12. package/dist/cli/commands/export.d.ts.map +1 -0
  13. package/dist/cli/commands/export.js +45 -0
  14. package/dist/cli/commands/export.js.map +1 -0
  15. package/dist/cli/commands/info.d.ts +3 -0
  16. package/dist/cli/commands/info.d.ts.map +1 -0
  17. package/dist/cli/commands/info.js +101 -0
  18. package/dist/cli/commands/info.js.map +1 -0
  19. package/dist/cli/commands/render.d.ts +3 -0
  20. package/dist/cli/commands/render.d.ts.map +1 -0
  21. package/dist/cli/commands/render.js +103 -0
  22. package/dist/cli/commands/render.js.map +1 -0
  23. package/dist/cli/index.d.ts +3 -0
  24. package/dist/cli/index.d.ts.map +1 -0
  25. package/dist/cli/index.js +31 -0
  26. package/dist/cli/index.js.map +1 -0
  27. package/dist/cli/resolve.d.ts +12 -0
  28. package/dist/cli/resolve.d.ts.map +1 -0
  29. package/dist/cli/resolve.js +46 -0
  30. package/dist/cli/resolve.js.map +1 -0
  31. package/dist/core/angles.d.ts +12 -0
  32. package/dist/core/angles.d.ts.map +1 -0
  33. package/dist/core/angles.js +27 -0
  34. package/dist/core/angles.js.map +1 -0
  35. package/dist/core/rig.d.ts +8 -0
  36. package/dist/core/rig.d.ts.map +1 -0
  37. package/dist/core/rig.js +97 -0
  38. package/dist/core/rig.js.map +1 -0
  39. package/dist/core/skeleton.d.ts +17 -0
  40. package/dist/core/skeleton.d.ts.map +1 -0
  41. package/dist/core/skeleton.js +144 -0
  42. package/dist/core/skeleton.js.map +1 -0
  43. package/dist/core/types.d.ts +105 -0
  44. package/dist/core/types.d.ts.map +1 -0
  45. package/dist/core/types.js +47 -0
  46. package/dist/core/types.js.map +1 -0
  47. package/dist/core/vec2.d.ts +19 -0
  48. package/dist/core/vec2.d.ts.map +1 -0
  49. package/dist/core/vec2.js +41 -0
  50. package/dist/core/vec2.js.map +1 -0
  51. package/dist/index.d.ts +11 -0
  52. package/dist/index.d.ts.map +1 -0
  53. package/dist/index.js +11 -0
  54. package/dist/index.js.map +1 -0
  55. package/dist/library/index.d.ts +27 -0
  56. package/dist/library/index.d.ts.map +1 -0
  57. package/dist/library/index.js +75 -0
  58. package/dist/library/index.js.map +1 -0
  59. package/dist/model/index.d.ts +4 -0
  60. package/dist/model/index.d.ts.map +1 -0
  61. package/dist/model/index.js +4 -0
  62. package/dist/model/index.js.map +1 -0
  63. package/dist/model/parse.d.ts +12 -0
  64. package/dist/model/parse.d.ts.map +1 -0
  65. package/dist/model/parse.js +43 -0
  66. package/dist/model/parse.js.map +1 -0
  67. package/dist/model/pose.d.ts +11 -0
  68. package/dist/model/pose.d.ts.map +1 -0
  69. package/dist/model/pose.js +26 -0
  70. package/dist/model/pose.js.map +1 -0
  71. package/dist/model/schema.d.ts +1122 -0
  72. package/dist/model/schema.d.ts.map +1 -0
  73. package/dist/model/schema.js +178 -0
  74. package/dist/model/schema.js.map +1 -0
  75. package/dist/render/anatomy.d.ts +10 -0
  76. package/dist/render/anatomy.d.ts.map +1 -0
  77. package/dist/render/anatomy.js +77 -0
  78. package/dist/render/anatomy.js.map +1 -0
  79. package/dist/render/annotations.d.ts +9 -0
  80. package/dist/render/annotations.d.ts.map +1 -0
  81. package/dist/render/annotations.js +185 -0
  82. package/dist/render/annotations.js.map +1 -0
  83. package/dist/render/context.d.ts +16 -0
  84. package/dist/render/context.d.ts.map +1 -0
  85. package/dist/render/context.js +2 -0
  86. package/dist/render/context.js.map +1 -0
  87. package/dist/render/figure.d.ts +8 -0
  88. package/dist/render/figure.d.ts.map +1 -0
  89. package/dist/render/figure.js +138 -0
  90. package/dist/render/figure.js.map +1 -0
  91. package/dist/render/index.d.ts +7 -0
  92. package/dist/render/index.d.ts.map +1 -0
  93. package/dist/render/index.js +7 -0
  94. package/dist/render/index.js.map +1 -0
  95. package/dist/render/project.d.ts +18 -0
  96. package/dist/render/project.d.ts.map +1 -0
  97. package/dist/render/project.js +35 -0
  98. package/dist/render/project.js.map +1 -0
  99. package/dist/render/props.d.ts +9 -0
  100. package/dist/render/props.d.ts.map +1 -0
  101. package/dist/render/props.js +178 -0
  102. package/dist/render/props.js.map +1 -0
  103. package/dist/render/raster.d.ts +19 -0
  104. package/dist/render/raster.d.ts.map +1 -0
  105. package/dist/render/raster.js +39 -0
  106. package/dist/render/raster.js.map +1 -0
  107. package/dist/render/scene.d.ts +26 -0
  108. package/dist/render/scene.d.ts.map +1 -0
  109. package/dist/render/scene.js +144 -0
  110. package/dist/render/scene.js.map +1 -0
  111. package/dist/render/sheet.d.ts +20 -0
  112. package/dist/render/sheet.d.ts.map +1 -0
  113. package/dist/render/sheet.js +74 -0
  114. package/dist/render/sheet.js.map +1 -0
  115. package/dist/render/styles.d.ts +77 -0
  116. package/dist/render/styles.d.ts.map +1 -0
  117. package/dist/render/styles.js +122 -0
  118. package/dist/render/styles.js.map +1 -0
  119. package/dist/render/svg.d.ts +19 -0
  120. package/dist/render/svg.d.ts.map +1 -0
  121. package/dist/render/svg.js +40 -0
  122. package/dist/render/svg.js.map +1 -0
  123. package/dist/standards/keypoints.d.ts +31 -0
  124. package/dist/standards/keypoints.d.ts.map +1 -0
  125. package/dist/standards/keypoints.js +118 -0
  126. package/dist/standards/keypoints.js.map +1 -0
  127. package/docs/AUTHORING.md +144 -0
  128. package/package.json +94 -0
  129. package/poses/surf/bottom-turn.pose.yaml +47 -0
  130. package/poses/surf/cutback.pose.yaml +47 -0
  131. package/poses/surf/duck-dive.pose.yaml +47 -0
  132. package/poses/surf/noseride.pose.yaml +48 -0
  133. package/poses/surf/paddling.pose.yaml +48 -0
  134. package/poses/surf/pop-up.pose.yaml +47 -0
  135. package/poses/surf/takeoff.pose.yaml +47 -0
  136. package/poses/surf/tube-stance.pose.yaml +47 -0
  137. package/poses/yoga/ashtanga/adho-mukha-svanasana.pose.yaml +42 -0
  138. package/poses/yoga/ashtanga/ardha-uttanasana.pose.yaml +42 -0
  139. package/poses/yoga/ashtanga/baddha-konasana.pose.yaml +42 -0
  140. package/poses/yoga/ashtanga/balasana.pose.yaml +43 -0
  141. package/poses/yoga/ashtanga/chaturanga-dandasana.pose.yaml +41 -0
  142. package/poses/yoga/ashtanga/dandasana.pose.yaml +42 -0
  143. package/poses/yoga/ashtanga/halasana.pose.yaml +43 -0
  144. package/poses/yoga/ashtanga/janu-sirsasana-a.pose.yaml +42 -0
  145. package/poses/yoga/ashtanga/karnapidasana.pose.yaml +43 -0
  146. package/poses/yoga/ashtanga/marichyasana-a.pose.yaml +42 -0
  147. package/poses/yoga/ashtanga/marichyasana-c.pose.yaml +42 -0
  148. package/poses/yoga/ashtanga/matsyasana.pose.yaml +43 -0
  149. package/poses/yoga/ashtanga/navasana.pose.yaml +42 -0
  150. package/poses/yoga/ashtanga/padahastasana.pose.yaml +42 -0
  151. package/poses/yoga/ashtanga/padangusthasana.pose.yaml +42 -0
  152. package/poses/yoga/ashtanga/padmasana.pose.yaml +43 -0
  153. package/poses/yoga/ashtanga/parsvottanasana.pose.yaml +42 -0
  154. package/poses/yoga/ashtanga/paschimottanasana.pose.yaml +42 -0
  155. package/poses/yoga/ashtanga/prasarita-padottanasana-a.pose.yaml +46 -0
  156. package/poses/yoga/ashtanga/prasarita-padottanasana-c.pose.yaml +46 -0
  157. package/poses/yoga/ashtanga/primary.seq.yaml +74 -0
  158. package/poses/yoga/ashtanga/purvottanasana.pose.yaml +42 -0
  159. package/poses/yoga/ashtanga/salamba-sarvangasana.pose.yaml +43 -0
  160. package/poses/yoga/ashtanga/samasthiti.pose.yaml +29 -0
  161. package/poses/yoga/ashtanga/savasana.pose.yaml +43 -0
  162. package/poses/yoga/ashtanga/setu-bandhasana.pose.yaml +42 -0
  163. package/poses/yoga/ashtanga/sirsasana.pose.yaml +43 -0
  164. package/poses/yoga/ashtanga/supta-padangusthasana.pose.yaml +42 -0
  165. package/poses/yoga/ashtanga/upavistha-konasana.pose.yaml +42 -0
  166. package/poses/yoga/ashtanga/urdhva-dhanurasana.pose.yaml +43 -0
  167. package/poses/yoga/ashtanga/urdhva-hastasana.pose.yaml +42 -0
  168. package/poses/yoga/ashtanga/urdhva-mukha-svanasana.pose.yaml +42 -0
  169. package/poses/yoga/ashtanga/utkatasana.pose.yaml +42 -0
  170. package/poses/yoga/ashtanga/uttanasana.pose.yaml +42 -0
  171. package/poses/yoga/ashtanga/utthita-parsvakonasana.pose.yaml +44 -0
  172. package/poses/yoga/ashtanga/utthita-trikonasana.pose.yaml +44 -0
  173. package/poses/yoga/ashtanga/virabhadrasana-a.pose.yaml +42 -0
  174. package/poses/yoga/ashtanga/virabhadrasana-b.pose.yaml +42 -0
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: padangusthasana
3
+ name: Big Toe Pose
4
+ sanskrit: Pādāṅguṣṭhāsana
5
+ english: Big Toe Pose
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 2
9
+ description: Feet hip width, legs straight, fold deep from the hips and hook the first two fingers around the big toes. The elbows bend back and the crown drops toward the shins.
10
+ tags: [ashtanga, standing, forward-fold]
11
+ breath: exhale
12
+ drishti: nasagrai
13
+ cues:
14
+ - Hook the big toes, lift the kneecaps
15
+ - Pull on the toes to draw the chest toward the shins
16
+ contact: [toeL, toeR, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: -72
22
+ world:
23
+ thighL: -90
24
+ thighR: -90
25
+ shinL: -90
26
+ shinR: -90
27
+ footL: -18
28
+ footR: -18
29
+ spine: -82
30
+ neck: -85
31
+ head: -80
32
+ upperArmL: -133
33
+ upperArmR: -133
34
+ forearmL: -38
35
+ forearmR: -38
36
+ handL: -60
37
+ handR: -60
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [biceps, quadriceps, rectusAbdominis]
42
+ stretched: [hamstrings, erectorSpinae, gastrocnemius]
@@ -0,0 +1,43 @@
1
+ asanakit: 1
2
+ id: padmasana
3
+ name: Lotus Pose
4
+ sanskrit: Padmāsana
5
+ english: Lotus Pose
6
+ discipline: yoga
7
+ family: seated
8
+ difficulty: 3
9
+ description: Seated with the legs folded and crossed, each foot drawn up onto the opposite thigh. The spine lifts tall and the hands rest quietly on the knees.
10
+ tags: [ashtanga, finishing, seated, meditation]
11
+ breath: free
12
+ drishti: nasagrai
13
+ cues:
14
+ - Root the sit bones, grow tall through the crown
15
+ - Let the knees settle, never force them down
16
+ contact: [kneeL, kneeR, ankleL, ankleR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 90
22
+ world:
23
+ pelvis: 90
24
+ spine: 90
25
+ neck: 90
26
+ head: 90
27
+ upperArmL: -65
28
+ upperArmR: -65
29
+ forearmL: -50
30
+ forearmR: -50
31
+ handL: -45
32
+ handR: -45
33
+ thighL: -20
34
+ thighR: -20
35
+ shinL: 181.5
36
+ shinR: 181.5
37
+ footL: 20
38
+ footR: 20
39
+ props:
40
+ - type: mat
41
+ muscles:
42
+ engaged: [erectorSpinae, rectusAbdominis]
43
+ stretched: [adductors, gluteus, quadriceps]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: parsvottanasana
3
+ name: Intense Side Stretch
4
+ sanskrit: Pārśvottānāsana
5
+ english: Intense Side Stretch Pose
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 3
9
+ description: Feet staggered front and back, both legs straight, the hips square. The torso folds flat over the front leg while the hands stay in reverse prayer behind the back. Held five breaths.
10
+ tags: [ashtanga, standing, forward-fold, primary-series]
11
+ breath: exhale
12
+ drishti: padhayoragrai
13
+ cues:
14
+ - Square the hips to the front foot before you fold
15
+ - Lengthen the chest along the front thigh, chin toward the shin
16
+ contact: [toeL, toeR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: -55
22
+ world:
23
+ thighL: -65
24
+ shinL: -65
25
+ footL: 0
26
+ thighR: -115
27
+ shinR: -115
28
+ footR: 0
29
+ spine: -55
30
+ neck: -70
31
+ head: -68
32
+ upperArmL: 140
33
+ forearmL: -160
34
+ handL: -160
35
+ upperArmR: 140
36
+ forearmR: -160
37
+ handR: -160
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [quadriceps, rectusAbdominis, rotatorCuff]
42
+ stretched: [hamstrings, gastrocnemius, erectorSpinae, pectoralis]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: paschimottanasana
3
+ name: Seated Forward Fold
4
+ sanskrit: Paścimottānāsana
5
+ english: Intense West Stretch
6
+ discipline: yoga
7
+ family: seated
8
+ difficulty: 2
9
+ description: From Staff Pose the torso hinges forward over straight legs, the hands catch the feet and the spine lengthens along the thighs. The whole back line of the body opens.
10
+ tags: [ashtanga, seated, forward-fold, primary-series]
11
+ breath: exhale
12
+ drishti: padhayoragrai
13
+ cues:
14
+ - Hinge from the hip joints, lead with the chest not the chin
15
+ - Draw the belly in and lengthen the spine on every inhale
16
+ contact: [hipCenter, ankleL, ankleR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 40
22
+ world:
23
+ thighL: 0
24
+ thighR: 0
25
+ shinL: 0
26
+ shinR: 0
27
+ footL: 90
28
+ footR: 90
29
+ spine: 28
30
+ neck: 10
31
+ head: -5
32
+ upperArmL: -45
33
+ upperArmR: -45
34
+ forearmL: 23
35
+ forearmR: 23
36
+ handL: -45
37
+ handR: -45
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [quadriceps, rectusAbdominis, biceps]
42
+ stretched: [hamstrings, erectorSpinae, gastrocnemius, latissimus]
@@ -0,0 +1,46 @@
1
+ asanakit: 1
2
+ id: prasarita-padottanasana-a
3
+ name: Wide-Legged Forward Fold A
4
+ sanskrit: Prasārita Pādottānāsana A
5
+ english: Wide-Legged Intense Stretch A
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 2
9
+ description: Feet wide and parallel, legs straight, the torso folds down between them. Hands press the floor in line with the feet, elbows bend back and the crown of the head reaches the mat. Held five breaths.
10
+ tags: [ashtanga, standing, forward-fold, primary-series]
11
+ breath: exhale
12
+ drishti: nasagrai
13
+ cues:
14
+ - Straighten the legs and lift the kneecaps
15
+ - Bend the elbows straight back, crown to the floor
16
+ contact: [toeL, toeR, handTipL, handTipR, headTop]
17
+ figure:
18
+ view: front
19
+ grounded: true
20
+ root:
21
+ rotation: -90
22
+ world:
23
+ hipL: 0
24
+ hipR: 180
25
+ thighL: -62
26
+ shinL: -62
27
+ footL: -30
28
+ thighR: -118
29
+ shinR: -118
30
+ footR: -150
31
+ spine: -90
32
+ neck: -90
33
+ head: -90
34
+ clavicleL: 0
35
+ clavicleR: 180
36
+ upperArmL: -95
37
+ forearmL: -10
38
+ handL: -8
39
+ upperArmR: -85
40
+ forearmR: -170
41
+ handR: -172
42
+ props:
43
+ - type: mat
44
+ muscles:
45
+ engaged: [quadriceps, rectusAbdominis, deltoid]
46
+ stretched: [hamstrings, adductors, erectorSpinae, gastrocnemius]
@@ -0,0 +1,46 @@
1
+ asanakit: 1
2
+ id: prasarita-padottanasana-c
3
+ name: Wide-Legged Forward Fold C
4
+ sanskrit: Prasārita Pādottānāsana C
5
+ english: Wide-Legged Intense Stretch C
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 3
9
+ description: Feet wide and parallel, legs straight, the torso folds down between them. The hands are clasped behind the back and the straight arms sweep up over the head toward the floor, opening the shoulders. Held five breaths.
10
+ tags: [ashtanga, standing, forward-fold, shoulder-opener, primary-series]
11
+ breath: exhale
12
+ drishti: nasagrai
13
+ cues:
14
+ - Clasp the hands and straighten the elbows before you fold
15
+ - Let the arms fall over the head, shoulders away from the ears
16
+ contact: [toeL, toeR, headTop]
17
+ figure:
18
+ view: front
19
+ grounded: true
20
+ root:
21
+ rotation: -90
22
+ world:
23
+ hipL: 0
24
+ hipR: 180
25
+ thighL: -62
26
+ shinL: -62
27
+ footL: -30
28
+ thighR: -118
29
+ shinR: -118
30
+ footR: -150
31
+ spine: -90
32
+ neck: -90
33
+ head: -90
34
+ clavicleL: 0
35
+ clavicleR: 180
36
+ upperArmL: 105
37
+ forearmL: 105
38
+ handL: 105
39
+ upperArmR: 75
40
+ forearmR: 75
41
+ handR: 75
42
+ props:
43
+ - type: mat
44
+ muscles:
45
+ engaged: [quadriceps, deltoid, trapezius]
46
+ stretched: [hamstrings, adductors, pectoralis, deltoid]
@@ -0,0 +1,74 @@
1
+ asanakit: 1
2
+ id: ashtanga-primary
3
+ name: Ashtanga Primary Series
4
+ tradition: Ashtanga Vinyasa Yoga
5
+ description: >-
6
+ Yoga Chikitsa, the first series of Ashtanga Vinyasa Yoga: the opening sun salutations,
7
+ the standing sequence, the seated sequence and the finishing sequence. Asymmetric
8
+ postures are marked "both" and render twice, once per side.
9
+
10
+ sections:
11
+ - name: Surya Namaskara A
12
+ steps:
13
+ - { pose: samasthiti, breath: free, count: 1 }
14
+ - { pose: urdhva-hastasana, breath: inhale, count: 1 }
15
+ - { pose: uttanasana, breath: exhale, count: 1 }
16
+ - { pose: ardha-uttanasana, breath: inhale, count: 1 }
17
+ - { pose: chaturanga-dandasana, breath: exhale, count: 1 }
18
+ - { pose: urdhva-mukha-svanasana, breath: inhale, count: 1 }
19
+ - { pose: adho-mukha-svanasana, breath: exhale, count: 5 }
20
+ - { pose: ardha-uttanasana, breath: inhale, count: 1 }
21
+ - { pose: uttanasana, breath: exhale, count: 1 }
22
+ - { pose: urdhva-hastasana, breath: inhale, count: 1 }
23
+ - { pose: samasthiti, breath: exhale, count: 1 }
24
+
25
+ - name: Surya Namaskara B
26
+ steps:
27
+ - { pose: utkatasana, breath: inhale, count: 1 }
28
+ - { pose: chaturanga-dandasana, breath: exhale, count: 1 }
29
+ - { pose: urdhva-mukha-svanasana, breath: inhale, count: 1 }
30
+ - { pose: adho-mukha-svanasana, breath: exhale, count: 1 }
31
+ - { pose: virabhadrasana-a, breath: inhale, count: 1, side: both }
32
+ - { pose: chaturanga-dandasana, breath: exhale, count: 1 }
33
+ - { pose: adho-mukha-svanasana, breath: exhale, count: 5 }
34
+ - { pose: samasthiti, breath: exhale, count: 1 }
35
+
36
+ - name: Standing sequence
37
+ steps:
38
+ - { pose: padangusthasana, breath: exhale, count: 5 }
39
+ - { pose: padahastasana, breath: exhale, count: 5 }
40
+ - { pose: utthita-trikonasana, breath: exhale, count: 5, side: both }
41
+ - { pose: utthita-parsvakonasana, breath: exhale, count: 5, side: both }
42
+ - { pose: prasarita-padottanasana-a, breath: exhale, count: 5 }
43
+ - { pose: prasarita-padottanasana-c, breath: exhale, count: 5 }
44
+ - { pose: parsvottanasana, breath: exhale, count: 5, side: both }
45
+ - { pose: utkatasana, breath: inhale, count: 5 }
46
+ - { pose: virabhadrasana-a, breath: inhale, count: 5, side: both }
47
+ - { pose: virabhadrasana-b, breath: exhale, count: 5, side: both }
48
+
49
+ - name: Seated sequence
50
+ steps:
51
+ - { pose: dandasana, breath: hold, count: 5 }
52
+ - { pose: paschimottanasana, breath: exhale, count: 5 }
53
+ - { pose: purvottanasana, breath: inhale, count: 5 }
54
+ - { pose: janu-sirsasana-a, breath: exhale, count: 5, side: both }
55
+ - { pose: marichyasana-a, breath: exhale, count: 5, side: both }
56
+ - { pose: marichyasana-c, breath: exhale, count: 5, side: both }
57
+ - { pose: navasana, breath: free, count: 5 }
58
+ - { pose: baddha-konasana, breath: exhale, count: 5 }
59
+ - { pose: upavistha-konasana, breath: exhale, count: 5 }
60
+ - { pose: supta-padangusthasana, breath: exhale, count: 5, side: both }
61
+ - { pose: setu-bandhasana, breath: inhale, count: 5 }
62
+
63
+ - name: Finishing sequence
64
+ steps:
65
+ - { pose: urdhva-dhanurasana, breath: free, count: 5 }
66
+ - { pose: paschimottanasana, breath: exhale, count: 10 }
67
+ - { pose: salamba-sarvangasana, breath: free, count: 10 }
68
+ - { pose: halasana, breath: free, count: 8 }
69
+ - { pose: karnapidasana, breath: free, count: 8 }
70
+ - { pose: matsyasana, breath: free, count: 8 }
71
+ - { pose: sirsasana, breath: free, count: 15 }
72
+ - { pose: balasana, breath: free, count: 5 }
73
+ - { pose: padmasana, breath: free, count: 10 }
74
+ - { pose: savasana, breath: free, count: 10, note: Rest. }
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: purvottanasana
3
+ name: Upward Plank
4
+ sanskrit: Pūrvottānāsana
5
+ english: Intense East Stretch
6
+ discipline: yoga
7
+ family: backbend
8
+ difficulty: 3
9
+ description: The counterpose to the seated forward fold. Hands press the floor behind the hips, the body lifts into one straight line from shoulders to feet, the soles press down and the head drops back.
10
+ tags: [ashtanga, backbend, counterpose, primary-series]
11
+ breath: inhale
12
+ drishti: broomadhya
13
+ cues:
14
+ - Press the hands down and lift the hips until the body is one line
15
+ - Push the soles into the floor and open the chest
16
+ contact: [toeL, toeR, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 158
22
+ world:
23
+ thighL: -22
24
+ thighR: -22
25
+ shinL: -22
26
+ shinR: -22
27
+ footL: -18
28
+ footR: -18
29
+ spine: 158
30
+ neck: 158
31
+ head: 205
32
+ upperArmL: -90
33
+ upperArmR: -90
34
+ forearmL: -90
35
+ forearmR: -90
36
+ handL: 0
37
+ handR: 0
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [gluteus, hamstrings, erectorSpinae, triceps, deltoid]
42
+ stretched: [pectoralis, rectusAbdominis, hipFlexors]
@@ -0,0 +1,43 @@
1
+ asanakit: 1
2
+ id: salamba-sarvangasana
3
+ name: Shoulderstand
4
+ sanskrit: Sālamba Sarvāṅgāsana
5
+ english: Supported Shoulderstand
6
+ discipline: yoga
7
+ family: inversion
8
+ difficulty: 3
9
+ description: An inversion. The shoulders and upper arms rest on the floor, the body stacks vertically upside down, the legs point straight up and the hands support the mid back.
10
+ tags: [ashtanga, finishing, inversion]
11
+ breath: free
12
+ drishti: nasagrai
13
+ cues:
14
+ - Stack hips over shoulders, lift through the balls of the feet
15
+ - Keep the weight in the shoulders, never on the neck
16
+ contact: [shoulderL, shoulderR, elbowL, elbowR, headTop]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: -90
22
+ world:
23
+ pelvis: -90
24
+ spine: -90
25
+ neck: 180
26
+ head: 180
27
+ upperArmL: 0
28
+ upperArmR: 0
29
+ forearmL: 134
30
+ forearmR: 134
31
+ handL: 134
32
+ handR: 134
33
+ thighL: 90
34
+ thighR: 90
35
+ shinL: 90
36
+ shinR: 90
37
+ footL: 95
38
+ footR: 95
39
+ props:
40
+ - type: mat
41
+ muscles:
42
+ engaged: [rectusAbdominis, erectorSpinae, gluteus, quadriceps, triceps]
43
+ stretched: [trapezius, hamstrings]
@@ -0,0 +1,29 @@
1
+ asanakit: 1
2
+ id: samasthiti
3
+ name: Samasthiti
4
+ sanskrit: Samasthitiḥ
5
+ english: Equal Standing
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 1
9
+ description: The starting and ending posture of every vinyasa. Feet together, weight even, spine long.
10
+ tags: [ashtanga, surya-namaskara-a, surya-namaskara-b, standing]
11
+ breath: free
12
+ drishti: nasagrai
13
+ cues:
14
+ - Feet together, weight even across both soles
15
+ - Crown lifts, shoulders soften down
16
+ contact: [toeL, toeR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ world:
21
+ upperArmL: -88
22
+ upperArmR: -88
23
+ forearmL: -88
24
+ forearmR: -88
25
+ handL: -80
26
+ props:
27
+ - type: mat
28
+ muscles:
29
+ engaged: [quadriceps, erectorSpinae]
@@ -0,0 +1,43 @@
1
+ asanakit: 1
2
+ id: savasana
3
+ name: Corpse Pose
4
+ sanskrit: Śavāsana
5
+ english: Corpse Pose
6
+ discipline: yoga
7
+ family: supine
8
+ difficulty: 1
9
+ description: Lying flat on the back, the whole body rests along the floor. Legs are long and slightly apart, arms relax beside the body, palms soft, the breath is left alone.
10
+ tags: [ashtanga, finishing, supine, restorative]
11
+ breath: free
12
+ drishti: nasagrai
13
+ cues:
14
+ - Let the whole weight of the body drop into the floor
15
+ - Release the jaw, the eyes and the breath
16
+ contact: [headTop, shoulderL, shoulderR, hipCenter, handTipL, handTipR, kneeL, kneeR, ankleL, ankleR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 180
22
+ world:
23
+ pelvis: 180
24
+ spine: 180
25
+ neck: 180
26
+ head: 180
27
+ upperArmL: 0
28
+ upperArmR: 0
29
+ forearmL: 0
30
+ forearmR: 0
31
+ handL: 0
32
+ handR: 0
33
+ thighL: 0
34
+ thighR: 0
35
+ shinL: 0
36
+ shinR: 0
37
+ footL: 40
38
+ footR: 40
39
+ props:
40
+ - type: mat
41
+ muscles:
42
+ engaged: []
43
+ stretched: []
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: setu-bandhasana
3
+ name: Bridge Pose
4
+ sanskrit: Setu Bandhāsana
5
+ english: Bridge Pose
6
+ discipline: yoga
7
+ family: backbend
8
+ difficulty: 3
9
+ description: Lying on the back with the knees bent and the feet planted, the hips and chest lift while the crown of the head stays on the floor. The final posture of the primary series.
10
+ tags: [ashtanga, backbend, primary-series, neck]
11
+ breath: inhale
12
+ drishti: broomadhya
13
+ cues:
14
+ - Press the feet down and lift the hips before the chest
15
+ - Keep weight in the feet, never crank the neck
16
+ contact: [headTop, toeL, toeR, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 180
22
+ world:
23
+ thighL: -10
24
+ thighR: -10
25
+ shinL: -114
26
+ shinR: -114
27
+ footL: -18
28
+ footR: -18
29
+ spine: 225
30
+ neck: 240
31
+ head: 250
32
+ upperArmL: -83
33
+ upperArmR: -83
34
+ forearmL: -4
35
+ forearmR: -4
36
+ handL: 0
37
+ handR: 0
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [gluteus, hamstrings, erectorSpinae, quadriceps]
42
+ stretched: [rectusAbdominis, hipFlexors, pectoralis]
@@ -0,0 +1,43 @@
1
+ asanakit: 1
2
+ id: sirsasana
3
+ name: Headstand
4
+ sanskrit: Śīrṣāsana
5
+ english: Supported Headstand
6
+ discipline: yoga
7
+ family: inversion
8
+ difficulty: 4
9
+ description: An inversion. The crown of the head and the forearms rest on the floor, the body stacks upside down in one vertical line and the legs reach straight up.
10
+ tags: [ashtanga, finishing, inversion, balance]
11
+ breath: free
12
+ drishti: nasagrai
13
+ cues:
14
+ - Press the forearms down and lift the shoulders away from the ears
15
+ - Stack ankles over hips over shoulders, ribs in
16
+ contact: [headTop, elbowL, elbowR, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: -90
22
+ world:
23
+ pelvis: -90
24
+ spine: -90
25
+ neck: -90
26
+ head: -90
27
+ upperArmL: -100
28
+ upperArmR: -100
29
+ forearmL: 0
30
+ forearmR: 0
31
+ handL: 0
32
+ handR: 0
33
+ thighL: 90
34
+ thighR: 90
35
+ shinL: 90
36
+ shinR: 90
37
+ footL: 95
38
+ footR: 95
39
+ props:
40
+ - type: mat
41
+ muscles:
42
+ engaged: [deltoid, trapezius, rectusAbdominis, erectorSpinae, quadriceps, adductors]
43
+ stretched: [hamstrings]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: supta-padangusthasana
3
+ name: Reclining Big Toe Pose
4
+ sanskrit: Supta Pādāṅguṣṭhāsana
5
+ english: Reclining Hand-to-Big-Toe Pose
6
+ discipline: yoga
7
+ family: supine
8
+ difficulty: 2
9
+ description: Lying flat on the back, one leg stays long on the floor while the other lifts straight up. The hand catches the big toe and draws the leg in toward the torso; the free arm rests on the mat.
10
+ tags: [ashtanga, primary-series, supine, forward-fold]
11
+ breath: exhale
12
+ drishti: padhayoragrai
13
+ cues:
14
+ - Press the floor leg down as the lifted leg comes in
15
+ - Keep both hips level, do not let the bottom hip roll up
16
+ contact: [hipCenter, hipJointL, hipJointR, kneeL, ankleL, handTipL]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 0
22
+ world:
23
+ thighL: 180
24
+ shinL: 180
25
+ footL: 95
26
+ thighR: 60
27
+ shinR: 60
28
+ footR: -5
29
+ spine: 20
30
+ neck: 0
31
+ head: -5
32
+ upperArmL: 186
33
+ forearmL: 190
34
+ handL: 185
35
+ upperArmR: 78
36
+ forearmR: 78
37
+ handR: 78
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [quadriceps, hipFlexors, biceps]
42
+ stretched: [hamstrings, gastrocnemius, gluteus]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: upavistha-konasana
3
+ name: Wide-Angle Seated Forward Fold
4
+ sanskrit: Upaviṣṭha Koṇāsana
5
+ english: Seated Wide-Angle Pose
6
+ discipline: yoga
7
+ family: seated
8
+ difficulty: 3
9
+ description: Seated with the legs straight and spread wide on the floor. The torso hinges forward from the hips, the hands take hold of the outer edges of the feet and the chest travels toward the mat.
10
+ tags: [ashtanga, primary-series, seated, forward-fold, hip-opener]
11
+ breath: exhale
12
+ drishti: nasagrai
13
+ cues:
14
+ - Roll the thighs open so the kneecaps point at the ceiling
15
+ - Walk the hands out and lead with the chest, not the chin
16
+ contact: [hipCenter, hipJointL, hipJointR, kneeR, ankleR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 32
22
+ world:
23
+ thighL: 8
24
+ shinL: 8
25
+ footL: 82
26
+ thighR: 0
27
+ shinR: 0
28
+ footR: 75
29
+ spine: 40
30
+ neck: 20
31
+ head: 5
32
+ upperArmL: -30
33
+ forearmL: -20
34
+ handL: -25
35
+ upperArmR: -30
36
+ forearmR: -20
37
+ handR: -25
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [quadriceps, rectusAbdominis]
42
+ stretched: [hamstrings, adductors, erectorSpinae]