@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,47 @@
1
+ asanakit: 1
2
+ id: takeoff
3
+ name: Takeoff
4
+ english: Takeoff
5
+ discipline: surf
6
+ family: riding
7
+ difficulty: 3
8
+ description: The first instant on the feet at the top of the wave. The stance lands wide and low, the knees soak up the drop, the arms swing out for balance and the board angles down the face.
9
+ tags: [surf, riding, dynamic, beginner-milestone]
10
+ cues:
11
+ - Land low, both feet under the shoulders
12
+ - Look down the line, not at your feet
13
+ contact: [toeL, toeR]
14
+ figure:
15
+ view: side
16
+ grounded: true
17
+ root:
18
+ rotation: 72
19
+ world:
20
+ spine: 62
21
+ neck: 55
22
+ head: 50
23
+ thighL: -35
24
+ shinL: -115
25
+ footL: -15
26
+ thighR: -70
27
+ shinR: -155
28
+ footR: -15
29
+ upperArmL: -25
30
+ forearmL: -5
31
+ handL: 0
32
+ upperArmR: 150
33
+ forearmR: 175
34
+ handR: 175
35
+ props:
36
+ - type: wave
37
+ amplitude: 0.4
38
+ length: 3.2
39
+ y: -0.18
40
+ - type: surfboard
41
+ under: [ankleL, ankleR]
42
+ rotation: -8
43
+ length: 1.15
44
+ offset: [0, -0.1]
45
+ muscles:
46
+ engaged: [quadriceps, gluteus, deltoid, erectorSpinae, tibialisAnterior]
47
+ stretched: [hipFlexors, gastrocnemius]
@@ -0,0 +1,47 @@
1
+ asanakit: 1
2
+ id: tube-stance
3
+ name: Tube Stance
4
+ english: Tube Stance
5
+ discipline: surf
6
+ family: riding
7
+ difficulty: 5
8
+ description: Inside the barrel. Everything shrinks - the surfer folds into the smallest possible shape under the falling lip, head tucked, weight quiet over the middle of the board, while the trailing hand drags on the wave face to hold the line.
9
+ tags: [surf, riding, barrel, advanced]
10
+ cues:
11
+ - Make yourself small and stay quiet on the board
12
+ - Trail the back hand on the face to hold your line
13
+ contact: [toeL, toeR]
14
+ figure:
15
+ view: side
16
+ grounded: true
17
+ root:
18
+ rotation: 75
19
+ world:
20
+ spine: 78
21
+ neck: 52
22
+ head: 32
23
+ thighL: -20
24
+ shinL: -105
25
+ footL: -15
26
+ thighR: -65
27
+ shinR: -155
28
+ footR: -10
29
+ upperArmL: -30
30
+ forearmL: 20
31
+ handL: 25
32
+ upperArmR: -145
33
+ forearmR: -135
34
+ handR: -130
35
+ props:
36
+ - type: wave
37
+ amplitude: 0.5
38
+ length: 3.2
39
+ y: -0.25
40
+ - type: surfboard
41
+ under: [ankleL, ankleR]
42
+ rotation: -4
43
+ length: 1.1
44
+ offset: [0, -0.1]
45
+ muscles:
46
+ engaged: [quadriceps, gluteus, rectusAbdominis, obliques, tibialisAnterior]
47
+ stretched: [erectorSpinae, latissimus]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: adho-mukha-svanasana
3
+ name: Downward-Facing Dog
4
+ sanskrit: Adho Mukha Śvānāsana
5
+ english: Downward-Facing Dog
6
+ discipline: yoga
7
+ family: inversion
8
+ difficulty: 2
9
+ description: An inverted V. Hips lift back and up, heels press down, the spine lengthens from wrists to sit bones. Held five breaths.
10
+ tags: [ashtanga, surya-namaskara-a, surya-namaskara-b, inversion, forward-fold]
11
+ breath: exhale
12
+ drishti: nabi-chakra
13
+ cues:
14
+ - Lift the sit bones, lengthen the spine
15
+ - Press the floor away through the whole hand
16
+ contact: [toeL, toeR, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: -48
22
+ world:
23
+ thighL: -125
24
+ thighR: -125
25
+ shinL: -125
26
+ shinR: -125
27
+ footL: -20
28
+ footR: -20
29
+ spine: -48
30
+ neck: -48
31
+ head: -48
32
+ upperArmL: -50
33
+ upperArmR: -50
34
+ forearmL: -50
35
+ forearmR: -50
36
+ handL: -8
37
+ handR: -8
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [deltoid, triceps, quadriceps, serratus]
42
+ stretched: [hamstrings, gastrocnemius, latissimus]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: ardha-uttanasana
3
+ name: Half Forward Fold
4
+ sanskrit: Ardha Uttānāsana
5
+ english: Half Standing Forward Bend
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 2
9
+ description: From the fold, lift the chest to a flat back, fingertips to the floor, gaze forward.
10
+ tags: [ashtanga, surya-namaskara-a, standing]
11
+ breath: inhale
12
+ drishti: broomadhya
13
+ cues:
14
+ - Flat back, chest forward
15
+ - Draw the shoulders away from the ears
16
+ contact: [toeL, toeR, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: -42
22
+ world:
23
+ thighL: -90
24
+ thighR: -90
25
+ shinL: -90
26
+ shinR: -90
27
+ footL: -18
28
+ footR: -18
29
+ spine: -22
30
+ neck: -4
31
+ head: 0
32
+ upperArmL: -92
33
+ upperArmR: -92
34
+ forearmL: -92
35
+ forearmR: -92
36
+ handL: -80
37
+ handR: -80
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [erectorSpinae, quadriceps]
42
+ stretched: [hamstrings]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: baddha-konasana
3
+ name: Bound Angle Pose
4
+ sanskrit: Baddha Koṇāsana
5
+ english: Bound Angle Pose
6
+ discipline: yoga
7
+ family: seated
8
+ difficulty: 2
9
+ description: Seated with the soles of the feet pressed together and the heels drawn in toward the perineum. The knees release wide toward the floor, the hands hold the feet and the spine lifts long from the sit bones.
10
+ tags: [ashtanga, primary-series, seated, hip-opener]
11
+ breath: free
12
+ drishti: nasagrai
13
+ cues:
14
+ - Draw the heels in, let the knees fall wide
15
+ - Lift the chest, hold the feet and open them like a book
16
+ contact: [hipCenter, hipJointL, hipJointR, ankleL, ankleR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 90
22
+ world:
23
+ thighL: 62
24
+ shinL: -62
25
+ footL: 55
26
+ thighR: 62
27
+ shinR: -62
28
+ footR: 55
29
+ spine: 88
30
+ neck: 90
31
+ head: 90
32
+ upperArmL: -65
33
+ forearmL: -40
34
+ handL: -10
35
+ upperArmR: -65
36
+ forearmR: -40
37
+ handR: -10
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [erectorSpinae, gluteus]
42
+ stretched: [adductors, hipFlexors]
@@ -0,0 +1,43 @@
1
+ asanakit: 1
2
+ id: balasana
3
+ name: Child's Pose
4
+ sanskrit: Bālāsana
5
+ english: Child's Pose
6
+ discipline: yoga
7
+ family: forward-fold
8
+ difficulty: 1
9
+ description: Kneeling, the hips sit back on the heels, the torso folds down over the thighs, the forehead rests on the floor and the arms stretch forward along the mat.
10
+ tags: [ashtanga, finishing, forward-fold, restorative]
11
+ breath: exhale
12
+ drishti: nasagrai
13
+ cues:
14
+ - Let the hips settle back onto the heels
15
+ - Soften the belly and breathe into the back ribs
16
+ contact: [kneeL, kneeR, ankleL, ankleR, toeL, toeR, headTop, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: -10
22
+ world:
23
+ pelvis: -10
24
+ spine: -25
25
+ neck: -25
26
+ head: -25
27
+ upperArmL: -13
28
+ upperArmR: -13
29
+ forearmL: -13
30
+ forearmR: -13
31
+ handL: -13
32
+ handR: -13
33
+ thighL: -40
34
+ thighR: -40
35
+ shinL: 180
36
+ shinR: 180
37
+ footL: 180
38
+ footR: 180
39
+ props:
40
+ - type: mat
41
+ muscles:
42
+ engaged: [rectusAbdominis]
43
+ stretched: [erectorSpinae, latissimus, gluteus, quadriceps, tibialisAnterior]
@@ -0,0 +1,41 @@
1
+ asanakit: 1
2
+ id: chaturanga-dandasana
3
+ name: Four-Limbed Staff Pose
4
+ sanskrit: Caturaṅga Daṇḍāsana
5
+ english: Four-Limbed Staff Pose
6
+ discipline: yoga
7
+ family: arm-support
8
+ difficulty: 3
9
+ description: A low plank. The body is one straight line from heel to crown, elbows bent to ninety degrees and hugged in.
10
+ tags: [ashtanga, surya-namaskara-a, arm-support, core]
11
+ breath: exhale
12
+ drishti: nasagrai
13
+ cues:
14
+ - Elbows stack over the wrists, hugged to the ribs
15
+ - One straight line from heels to crown
16
+ contact: [toeL, toeR, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 4
22
+ world:
23
+ spine: 4
24
+ neck: 10
25
+ head: 12
26
+ thighL: -177
27
+ thighR: -177
28
+ shinL: -177
29
+ shinR: -177
30
+ footL: -118
31
+ footR: -118
32
+ upperArmL: 176
33
+ upperArmR: 176
34
+ forearmL: -88
35
+ forearmR: -88
36
+ handL: 0
37
+ handR: 0
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [triceps, pectoralis, rectusAbdominis, serratus, quadriceps]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: dandasana
3
+ name: Staff Pose
4
+ sanskrit: Daṇḍāsana
5
+ english: Staff Pose
6
+ discipline: yoga
7
+ family: seated
8
+ difficulty: 1
9
+ description: The seated base of the primary series. Sit on the sit bones with the legs straight along the floor, feet flexed, hands beside the hips, spine stacked vertically like a staff.
10
+ tags: [ashtanga, seated, foundation, primary-series]
11
+ breath: free
12
+ drishti: nasagrai
13
+ cues:
14
+ - Press the hands down and lift the chest out of the waist
15
+ - Flex the feet and press the thighs into the floor
16
+ contact: [hipCenter, ankleL, ankleR, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 90
22
+ world:
23
+ thighL: 0
24
+ thighR: 0
25
+ shinL: 0
26
+ shinR: 0
27
+ footL: 90
28
+ footR: 90
29
+ spine: 90
30
+ neck: 90
31
+ head: 90
32
+ upperArmL: -117
33
+ upperArmR: -117
34
+ forearmL: -58
35
+ forearmR: -58
36
+ handL: 0
37
+ handR: 0
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [quadriceps, rectusAbdominis, erectorSpinae, triceps]
42
+ stretched: [hamstrings, gastrocnemius, pectoralis]
@@ -0,0 +1,43 @@
1
+ asanakit: 1
2
+ id: halasana
3
+ name: Plough Pose
4
+ sanskrit: Halāsana
5
+ english: Plough Pose
6
+ discipline: yoga
7
+ family: inversion
8
+ difficulty: 3
9
+ description: From shoulderstand the straight legs fold over the head until the toes touch the floor beyond the head, while the arms lie flat along the floor.
10
+ tags: [ashtanga, finishing, inversion, forward-fold]
11
+ breath: exhale
12
+ drishti: nabi-chakra
13
+ cues:
14
+ - Keep the legs straight, lift the sit bones toward the ceiling
15
+ - Weight stays in the shoulders, the neck stays soft
16
+ contact: [shoulderL, shoulderR, elbowL, elbowR, handTipL, handTipR, headTop, toeL, toeR]
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: 0
30
+ forearmR: 0
31
+ handL: 0
32
+ handR: 0
33
+ thighL: -147
34
+ thighR: -147
35
+ shinL: -147
36
+ shinR: -147
37
+ footL: 185
38
+ footR: 185
39
+ props:
40
+ - type: mat
41
+ muscles:
42
+ engaged: [rectusAbdominis, quadriceps, deltoid]
43
+ stretched: [hamstrings, erectorSpinae, trapezius, gastrocnemius]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: janu-sirsasana-a
3
+ name: Head-to-Knee Pose A
4
+ sanskrit: Jānu Śīrṣāsana A
5
+ english: Head-to-Knee Pose A
6
+ discipline: yoga
7
+ family: seated
8
+ difficulty: 3
9
+ description: One leg reaches straight out in front, the other knee folds out to the side with the sole of the foot against the inner thigh. The torso turns over the straight leg, the hands take the foot and the forehead travels toward the shin.
10
+ tags: [ashtanga, primary-series, seated, forward-fold]
11
+ breath: exhale
12
+ drishti: padhayoragrai
13
+ cues:
14
+ - Square the chest over the straight leg before you fold
15
+ - Press the bent knee back and keep the straight-leg thigh firm
16
+ contact: [hipCenter, hipJointL, hipJointR, kneeL, ankleL]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 32
22
+ world:
23
+ thighL: 0
24
+ shinL: 0
25
+ footL: 75
26
+ thighR: 80
27
+ shinR: -60
28
+ footR: 170
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, erectorSpinae, adductors]
@@ -0,0 +1,43 @@
1
+ asanakit: 1
2
+ id: karnapidasana
3
+ name: Ear Pressure Pose
4
+ sanskrit: Karṇapīḍāsana
5
+ english: Ear Pressure Pose
6
+ discipline: yoga
7
+ family: inversion
8
+ difficulty: 3
9
+ description: From plough the knees bend all the way down to the floor beside the ears, the shins rest along the floor and the arms stay flat.
10
+ tags: [ashtanga, finishing, inversion, forward-fold]
11
+ breath: exhale
12
+ drishti: nasagrai
13
+ cues:
14
+ - Let the knees squeeze gently in beside the ears
15
+ - Keep lifting the hips, breathe into the back body
16
+ contact: [shoulderL, shoulderR, elbowL, elbowR, handTipL, handTipR, headTop, kneeL, kneeR, ankleL, ankleR, toeL, toeR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: -60
22
+ world:
23
+ pelvis: -60
24
+ spine: -60
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: -119
34
+ thighR: -119
35
+ shinL: 180
36
+ shinR: 180
37
+ footL: 185
38
+ footR: 185
39
+ props:
40
+ - type: mat
41
+ muscles:
42
+ engaged: [rectusAbdominis, deltoid]
43
+ stretched: [erectorSpinae, trapezius, gluteus, hamstrings]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: marichyasana-a
3
+ name: Pose Dedicated to the Sage Marichi A
4
+ sanskrit: Marīcyāsana A
5
+ english: Sage Marichi's Pose A
6
+ discipline: yoga
7
+ family: seated
8
+ difficulty: 3
9
+ description: One leg reaches straight out in front, the other knee is drawn up with the sole flat on the floor beside the sit bone. The same-side arm wraps around the shin, the hands clasp behind the back and the torso folds over the straight leg.
10
+ tags: [ashtanga, primary-series, seated, forward-fold, bind]
11
+ breath: exhale
12
+ drishti: padhayoragrai
13
+ cues:
14
+ - Wrap the shoulder low around the shin before you reach for the bind
15
+ - Keep the straight-leg foot flexed and the thigh pressing down
16
+ contact: [hipCenter, hipJointL, hipJointR, kneeL, ankleL, ankleR, toeR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 18
22
+ world:
23
+ thighL: 0
24
+ shinL: 0
25
+ footL: 75
26
+ thighR: 78
27
+ shinR: -78
28
+ footR: 0
29
+ spine: 24
30
+ neck: 8
31
+ head: -8
32
+ upperArmL: -175
33
+ forearmL: -168
34
+ handL: 180
35
+ upperArmR: -172
36
+ forearmR: -165
37
+ handR: 180
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [rectusAbdominis, deltoid, quadriceps]
42
+ stretched: [hamstrings, erectorSpinae, pectoralis]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: marichyasana-c
3
+ name: Pose Dedicated to the Sage Marichi C
4
+ sanskrit: Marīcyāsana C
5
+ english: Sage Marichi's Pose C
6
+ discipline: yoga
7
+ family: seated
8
+ difficulty: 3
9
+ description: A seated spinal twist. One leg stays straight on the floor, the other knee is drawn up with the sole flat. The opposite elbow levers against the outside of the bent knee, the back hand presses the floor and the spine turns tall.
10
+ tags: [ashtanga, primary-series, seated, twist]
11
+ breath: exhale
12
+ drishti: parsva
13
+ cues:
14
+ - Lengthen up on the inhale, turn on the exhale
15
+ - Press the elbow against the knee and the knee back into the elbow
16
+ contact: [hipCenter, hipJointL, hipJointR, kneeL, ankleL, ankleR, toeR, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 90
22
+ world:
23
+ thighL: 0
24
+ shinL: 0
25
+ footL: 75
26
+ thighR: 78
27
+ shinR: -78
28
+ footR: 0
29
+ spine: 92
30
+ neck: 96
31
+ head: 105
32
+ upperArmL: -60
33
+ forearmL: 75
34
+ handL: 85
35
+ upperArmR: -132
36
+ forearmR: -132
37
+ handR: -132
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [obliques, erectorSpinae, deltoid]
42
+ stretched: [obliques, gluteus, trapezius]
@@ -0,0 +1,43 @@
1
+ asanakit: 1
2
+ id: matsyasana
3
+ name: Fish Pose
4
+ sanskrit: Matsyāsana
5
+ english: Fish Pose
6
+ discipline: yoga
7
+ family: backbend
8
+ difficulty: 3
9
+ description: Lying on the back, the chest arches high and the crown of the head rests on the floor. The forearms press down, the hands tuck under the hips and the legs stay long along the floor.
10
+ tags: [ashtanga, finishing, backbend, supine]
11
+ breath: inhale
12
+ drishti: broomadhya
13
+ cues:
14
+ - Lift the chest first, then let the head tip back
15
+ - Press the elbows down, keep weight off the neck
16
+ contact: [hipCenter, elbowL, elbowR, handTipL, handTipR, ankleL, ankleR, headTop]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 165
22
+ world:
23
+ pelvis: 165
24
+ spine: 125
25
+ neck: 210
26
+ head: -90
27
+ upperArmL: -90
28
+ upperArmR: -90
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: 25
38
+ footR: 25
39
+ props:
40
+ - type: mat
41
+ muscles:
42
+ engaged: [erectorSpinae, trapezius, triceps, quadriceps]
43
+ stretched: [pectoralis, rectusAbdominis, hipFlexors]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: navasana
3
+ name: Boat Pose
4
+ sanskrit: Nāvāsana
5
+ english: Boat Pose
6
+ discipline: yoga
7
+ family: core
8
+ difficulty: 3
9
+ description: Balance on the sit bones with the straight legs lifted to about forty-five degrees and the arms reaching forward beside the knees. Torso and legs form an open V.
10
+ tags: [ashtanga, core, balance, primary-series]
11
+ breath: inhale
12
+ drishti: padhayoragrai
13
+ cues:
14
+ - Lift the chest, do not let the lower back round
15
+ - Straighten the legs and reach the arms parallel to the floor
16
+ contact: [hipCenter]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: 135
22
+ world:
23
+ thighL: 45
24
+ thighR: 45
25
+ shinL: 45
26
+ shinR: 45
27
+ footL: 30
28
+ footR: 30
29
+ spine: 135
30
+ neck: 130
31
+ head: 115
32
+ upperArmL: 0
33
+ upperArmR: 0
34
+ forearmL: 0
35
+ forearmR: 0
36
+ handL: 0
37
+ handR: 0
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [rectusAbdominis, hipFlexors, quadriceps, erectorSpinae, deltoid]
42
+ stretched: [hamstrings]
@@ -0,0 +1,42 @@
1
+ asanakit: 1
2
+ id: padahastasana
3
+ name: Hand Under Foot Pose
4
+ sanskrit: Pādahastāsana
5
+ english: Hand Under Foot Pose
6
+ discipline: yoga
7
+ family: standing
8
+ difficulty: 3
9
+ description: The deepest of the standing folds. Legs stay straight, the palms slide under the soles of the feet, fingers toward the heels, and the head drops toward the shins.
10
+ tags: [ashtanga, standing, forward-fold]
11
+ breath: exhale
12
+ drishti: nasagrai
13
+ cues:
14
+ - Slide the palms under the feet, fingertips to the heels
15
+ - Bend the elbows back and lengthen the spine down
16
+ contact: [toeL, toeR, handTipL, handTipR]
17
+ figure:
18
+ view: side
19
+ grounded: true
20
+ root:
21
+ rotation: -78
22
+ world:
23
+ thighL: -90
24
+ thighR: -90
25
+ shinL: -90
26
+ shinR: -90
27
+ footL: -18
28
+ footR: -18
29
+ spine: -86
30
+ neck: -85
31
+ head: -75
32
+ upperArmL: -110
33
+ upperArmR: -110
34
+ forearmL: -43
35
+ forearmR: -43
36
+ handL: 180
37
+ handR: 180
38
+ props:
39
+ - type: mat
40
+ muscles:
41
+ engaged: [biceps, quadriceps, rectusAbdominis]
42
+ stretched: [hamstrings, erectorSpinae, gastrocnemius, latissimus]