@franzenzenhofer/asanakit 0.1.0 → 0.3.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 (199) hide show
  1. package/README.md +84 -46
  2. package/dist/anatomy/muscles.d.ts +10 -7
  3. package/dist/anatomy/muscles.d.ts.map +1 -1
  4. package/dist/anatomy/muscles.js +21 -17
  5. package/dist/anatomy/muscles.js.map +1 -1
  6. package/dist/anatomy/validate.d.ts.map +1 -1
  7. package/dist/anatomy/validate.js +16 -10
  8. package/dist/anatomy/validate.js.map +1 -1
  9. package/dist/cli/commands/export.d.ts.map +1 -1
  10. package/dist/cli/commands/export.js +24 -2
  11. package/dist/cli/commands/export.js.map +1 -1
  12. package/dist/cli/commands/info.d.ts.map +1 -1
  13. package/dist/cli/commands/info.js +3 -1
  14. package/dist/cli/commands/info.js.map +1 -1
  15. package/dist/cli/commands/render.d.ts.map +1 -1
  16. package/dist/cli/commands/render.js +22 -4
  17. package/dist/cli/commands/render.js.map +1 -1
  18. package/dist/cli/commands/view.d.ts +3 -0
  19. package/dist/cli/commands/view.d.ts.map +1 -0
  20. package/dist/cli/commands/view.js +88 -0
  21. package/dist/cli/commands/view.js.map +1 -0
  22. package/dist/cli/index.js +7 -2
  23. package/dist/cli/index.js.map +1 -1
  24. package/dist/cli/resolve.d.ts +6 -0
  25. package/dist/cli/resolve.d.ts.map +1 -1
  26. package/dist/cli/resolve.js +40 -0
  27. package/dist/cli/resolve.js.map +1 -1
  28. package/dist/core/camera.d.ts +56 -0
  29. package/dist/core/camera.d.ts.map +1 -0
  30. package/dist/core/camera.js +20 -0
  31. package/dist/core/camera.js.map +1 -0
  32. package/dist/core/joints.d.ts +18 -0
  33. package/dist/core/joints.d.ts.map +1 -0
  34. package/dist/core/joints.js +27 -0
  35. package/dist/core/joints.js.map +1 -0
  36. package/dist/core/quat.d.ts +18 -0
  37. package/dist/core/quat.d.ts.map +1 -0
  38. package/dist/core/quat.js +25 -0
  39. package/dist/core/quat.js.map +1 -0
  40. package/dist/core/rig.d.ts +1 -6
  41. package/dist/core/rig.d.ts.map +1 -1
  42. package/dist/core/rig.js +45 -74
  43. package/dist/core/rig.js.map +1 -1
  44. package/dist/core/skeleton.d.ts +4 -13
  45. package/dist/core/skeleton.d.ts.map +1 -1
  46. package/dist/core/skeleton.js +39 -69
  47. package/dist/core/skeleton.js.map +1 -1
  48. package/dist/core/types.d.ts +62 -55
  49. package/dist/core/types.d.ts.map +1 -1
  50. package/dist/core/types.js.map +1 -1
  51. package/dist/core/vec3.d.ts +13 -0
  52. package/dist/core/vec3.d.ts.map +1 -0
  53. package/dist/core/vec3.js +26 -0
  54. package/dist/core/vec3.js.map +1 -0
  55. package/dist/export3d/gltf.d.ts +11 -0
  56. package/dist/export3d/gltf.d.ts.map +1 -0
  57. package/dist/export3d/gltf.js +28 -0
  58. package/dist/export3d/gltf.js.map +1 -0
  59. package/dist/export3d/index.d.ts +3 -0
  60. package/dist/export3d/index.d.ts.map +1 -0
  61. package/dist/export3d/index.js +3 -0
  62. package/dist/export3d/index.js.map +1 -0
  63. package/dist/export3d/shims.d.ts +7 -0
  64. package/dist/export3d/shims.d.ts.map +1 -0
  65. package/dist/export3d/shims.js +27 -0
  66. package/dist/export3d/shims.js.map +1 -0
  67. package/dist/index.d.ts +9 -0
  68. package/dist/index.d.ts.map +1 -1
  69. package/dist/index.js +9 -0
  70. package/dist/index.js.map +1 -1
  71. package/dist/library/index.js +4 -4
  72. package/dist/library/index.js.map +1 -1
  73. package/dist/model/pose.d.ts +11 -5
  74. package/dist/model/pose.d.ts.map +1 -1
  75. package/dist/model/pose.js +30 -16
  76. package/dist/model/pose.js.map +1 -1
  77. package/dist/model/schema.d.ts +69 -28
  78. package/dist/model/schema.d.ts.map +1 -1
  79. package/dist/model/schema.js +57 -17
  80. package/dist/model/schema.js.map +1 -1
  81. package/dist/physics/index.d.ts +3 -0
  82. package/dist/physics/index.d.ts.map +1 -0
  83. package/dist/physics/index.js +3 -0
  84. package/dist/physics/index.js.map +1 -0
  85. package/dist/physics/rapier-types.d.ts +60 -0
  86. package/dist/physics/rapier-types.d.ts.map +1 -0
  87. package/dist/physics/rapier-types.js +12 -0
  88. package/dist/physics/rapier-types.js.map +1 -0
  89. package/dist/physics/settle.d.ts +3 -0
  90. package/dist/physics/settle.d.ts.map +1 -0
  91. package/dist/physics/settle.js +108 -0
  92. package/dist/physics/settle.js.map +1 -0
  93. package/dist/physics/world.d.ts +4 -0
  94. package/dist/physics/world.d.ts.map +1 -0
  95. package/dist/physics/world.js +18 -0
  96. package/dist/physics/world.js.map +1 -0
  97. package/dist/render/anatomy.js +1 -1
  98. package/dist/render/anatomy.js.map +1 -1
  99. package/dist/render/annotations.d.ts +3 -2
  100. package/dist/render/annotations.d.ts.map +1 -1
  101. package/dist/render/annotations.js.map +1 -1
  102. package/dist/render/camera.d.ts +43 -0
  103. package/dist/render/camera.d.ts.map +1 -0
  104. package/dist/render/camera.js +57 -0
  105. package/dist/render/camera.js.map +1 -0
  106. package/dist/render/context.d.ts +5 -3
  107. package/dist/render/context.d.ts.map +1 -1
  108. package/dist/render/figure.d.ts +4 -2
  109. package/dist/render/figure.d.ts.map +1 -1
  110. package/dist/render/figure.js +29 -43
  111. package/dist/render/figure.js.map +1 -1
  112. package/dist/render/index.d.ts +1 -0
  113. package/dist/render/index.d.ts.map +1 -1
  114. package/dist/render/index.js +1 -0
  115. package/dist/render/index.js.map +1 -1
  116. package/dist/render/props.d.ts +4 -3
  117. package/dist/render/props.d.ts.map +1 -1
  118. package/dist/render/props.js.map +1 -1
  119. package/dist/render/scene.d.ts +7 -1
  120. package/dist/render/scene.d.ts.map +1 -1
  121. package/dist/render/scene.js +8 -1
  122. package/dist/render/scene.js.map +1 -1
  123. package/dist/render/sheet.d.ts +3 -0
  124. package/dist/render/sheet.d.ts.map +1 -1
  125. package/dist/render/sheet.js +2 -0
  126. package/dist/render/sheet.js.map +1 -1
  127. package/dist/solve.d.ts +14 -0
  128. package/dist/solve.d.ts.map +1 -0
  129. package/dist/solve.js +17 -0
  130. package/dist/solve.js.map +1 -0
  131. package/dist/standards/keypoints.d.ts +2 -10
  132. package/dist/standards/keypoints.d.ts.map +1 -1
  133. package/dist/standards/keypoints.js +33 -14
  134. package/dist/standards/keypoints.js.map +1 -1
  135. package/dist/three/index.d.ts +2 -0
  136. package/dist/three/index.d.ts.map +1 -0
  137. package/dist/three/index.js +2 -0
  138. package/dist/three/index.js.map +1 -0
  139. package/dist/three/scene.d.ts +22 -0
  140. package/dist/three/scene.d.ts.map +1 -0
  141. package/dist/three/scene.js +90 -0
  142. package/dist/three/scene.js.map +1 -0
  143. package/dist/viewer/html.d.ts +32 -0
  144. package/dist/viewer/html.d.ts.map +1 -0
  145. package/dist/viewer/html.js +163 -0
  146. package/dist/viewer/html.js.map +1 -0
  147. package/dist/viewer/index.d.ts +2 -0
  148. package/dist/viewer/index.d.ts.map +1 -0
  149. package/dist/viewer/index.js +2 -0
  150. package/dist/viewer/index.js.map +1 -0
  151. package/dist/viewer/viewer.bundle.js +4119 -0
  152. package/docs/AUTHORING.md +119 -58
  153. package/package.json +20 -6
  154. package/poses/surf/bottom-turn.pose.yaml +24 -24
  155. package/poses/surf/cutback.pose.yaml +24 -24
  156. package/poses/surf/duck-dive.pose.yaml +23 -23
  157. package/poses/surf/noseride.pose.yaml +23 -25
  158. package/poses/surf/paddling.pose.yaml +24 -24
  159. package/poses/surf/pop-up.pose.yaml +24 -24
  160. package/poses/surf/takeoff.pose.yaml +24 -24
  161. package/poses/surf/tube-stance.pose.yaml +24 -24
  162. package/poses/yoga/ashtanga/adho-mukha-svanasana.pose.yaml +22 -22
  163. package/poses/yoga/ashtanga/ardha-uttanasana.pose.yaml +22 -22
  164. package/poses/yoga/ashtanga/baddha-konasana.pose.yaml +21 -23
  165. package/poses/yoga/ashtanga/balasana.pose.yaml +23 -23
  166. package/poses/yoga/ashtanga/chaturanga-dandasana.pose.yaml +21 -21
  167. package/poses/yoga/ashtanga/dandasana.pose.yaml +21 -23
  168. package/poses/yoga/ashtanga/halasana.pose.yaml +23 -23
  169. package/poses/yoga/ashtanga/janu-sirsasana-a.pose.yaml +22 -22
  170. package/poses/yoga/ashtanga/karnapidasana.pose.yaml +23 -23
  171. package/poses/yoga/ashtanga/marichyasana-a.pose.yaml +22 -22
  172. package/poses/yoga/ashtanga/marichyasana-c.pose.yaml +21 -23
  173. package/poses/yoga/ashtanga/matsyasana.pose.yaml +23 -23
  174. package/poses/yoga/ashtanga/navasana.pose.yaml +22 -22
  175. package/poses/yoga/ashtanga/padahastasana.pose.yaml +22 -22
  176. package/poses/yoga/ashtanga/padangusthasana.pose.yaml +22 -22
  177. package/poses/yoga/ashtanga/padmasana.pose.yaml +22 -24
  178. package/poses/yoga/ashtanga/parsvottanasana.pose.yaml +22 -22
  179. package/poses/yoga/ashtanga/paschimottanasana.pose.yaml +22 -22
  180. package/poses/yoga/ashtanga/prasarita-padottanasana-a.pose.yaml +26 -26
  181. package/poses/yoga/ashtanga/prasarita-padottanasana-c.pose.yaml +26 -26
  182. package/poses/yoga/ashtanga/primary.seq.yaml +2 -4
  183. package/poses/yoga/ashtanga/purvottanasana.pose.yaml +22 -22
  184. package/poses/yoga/ashtanga/salamba-sarvangasana.pose.yaml +23 -23
  185. package/poses/yoga/ashtanga/samasthiti.pose.yaml +10 -10
  186. package/poses/yoga/ashtanga/savasana.pose.yaml +21 -21
  187. package/poses/yoga/ashtanga/setu-bandhasana.pose.yaml +22 -22
  188. package/poses/yoga/ashtanga/sirsasana.pose.yaml +23 -23
  189. package/poses/yoga/ashtanga/supta-padangusthasana.pose.yaml +22 -22
  190. package/poses/yoga/ashtanga/upavistha-konasana.pose.yaml +22 -22
  191. package/poses/yoga/ashtanga/urdhva-dhanurasana.pose.yaml +23 -23
  192. package/poses/yoga/ashtanga/urdhva-hastasana.pose.yaml +22 -22
  193. package/poses/yoga/ashtanga/urdhva-mukha-svanasana.pose.yaml +22 -22
  194. package/poses/yoga/ashtanga/utkatasana.pose.yaml +22 -22
  195. package/poses/yoga/ashtanga/uttanasana.pose.yaml +22 -22
  196. package/poses/yoga/ashtanga/utthita-parsvakonasana.pose.yaml +24 -24
  197. package/poses/yoga/ashtanga/utthita-trikonasana.pose.yaml +24 -24
  198. package/poses/yoga/ashtanga/virabhadrasana-a.pose.yaml +22 -22
  199. package/poses/yoga/ashtanga/virabhadrasana-b.pose.yaml +21 -23
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: supta-padangusthasana
3
3
  name: Reclining Big Toe Pose
4
4
  sanskrit: Supta Pādāṅguṣṭhāsana
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: supine
8
8
  difficulty: 2
9
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]
10
+ tags: [ ashtanga, primary-series, supine, forward-fold ]
11
11
  breath: exhale
12
12
  drishti: padhayoragrai
13
13
  cues:
14
14
  - Press the floor leg down as the lifted leg comes in
15
15
  - Keep both hips level, do not let the bottom hip roll up
16
- contact: [hipCenter, hipJointL, hipJointR, kneeL, ankleL, handTipL]
16
+ contact: [ hipCenter, hipJointL, hipJointR, kneeL, ankleL, handTipL ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: 0
20
+ pitch: 90
22
21
  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
22
+ thighL: { azimuth: 180, elevation: 0 }
23
+ shinL: { azimuth: 180, elevation: 0 }
24
+ footL: { azimuth: 180, elevation: 85 }
25
+ thighR: { azimuth: 0, elevation: 60 }
26
+ shinR: { azimuth: 0, elevation: 60 }
27
+ footR: { azimuth: 0, elevation: -5 }
28
+ spine: { azimuth: 0, elevation: 20 }
29
+ neck: { azimuth: 0, elevation: 0 }
30
+ head: { azimuth: 0, elevation: -5 }
31
+ upperArmL: { azimuth: 180, elevation: -6 }
32
+ forearmL: { azimuth: 180, elevation: -10 }
33
+ handL: { azimuth: 180, elevation: -5 }
34
+ upperArmR: { azimuth: 0, elevation: 78 }
35
+ forearmR: { azimuth: 0, elevation: 78 }
36
+ handR: { azimuth: 0, elevation: 78 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [quadriceps, hipFlexors, biceps]
42
- stretched: [hamstrings, gastrocnemius, gluteus]
40
+ engaged: [ quadriceps, hipFlexors, biceps ]
41
+ stretched: [ hamstrings, gastrocnemius, gluteus ]
42
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: upavistha-konasana
3
3
  name: Wide-Angle Seated Forward Fold
4
4
  sanskrit: Upaviṣṭha Koṇāsana
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: seated
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, primary-series, seated, forward-fold, hip-opener ]
11
11
  breath: exhale
12
12
  drishti: nasagrai
13
13
  cues:
14
14
  - Roll the thighs open so the kneecaps point at the ceiling
15
15
  - Walk the hands out and lead with the chest, not the chin
16
- contact: [hipCenter, hipJointL, hipJointR, kneeR, ankleR]
16
+ contact: [ hipCenter, hipJointL, hipJointR, kneeR, ankleR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: 32
20
+ pitch: 58
22
21
  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
22
+ thighL: { azimuth: 0, elevation: 8 }
23
+ shinL: { azimuth: 0, elevation: 8 }
24
+ footL: { azimuth: 0, elevation: 82 }
25
+ thighR: { azimuth: 0, elevation: 0 }
26
+ shinR: { azimuth: 0, elevation: 0 }
27
+ footR: { azimuth: 0, elevation: 75 }
28
+ spine: { azimuth: 0, elevation: 40 }
29
+ neck: { azimuth: 0, elevation: 20 }
30
+ head: { azimuth: 0, elevation: 5 }
31
+ upperArmL: { azimuth: 0, elevation: -30 }
32
+ forearmL: { azimuth: 0, elevation: -20 }
33
+ handL: { azimuth: 0, elevation: -25 }
34
+ upperArmR: { azimuth: 0, elevation: -30 }
35
+ forearmR: { azimuth: 0, elevation: -20 }
36
+ handR: { azimuth: 0, elevation: -25 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [quadriceps, rectusAbdominis]
42
- stretched: [hamstrings, adductors, erectorSpinae]
40
+ engaged: [ quadriceps, rectusAbdominis ]
41
+ stretched: [ hamstrings, adductors, erectorSpinae ]
42
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: urdhva-dhanurasana
3
3
  name: Upward Bow
4
4
  sanskrit: Ūrdhva Dhanurāsana
@@ -7,37 +7,37 @@ discipline: yoga
7
7
  family: backbend
8
8
  difficulty: 4
9
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]
10
+ tags: [ ashtanga, finishing, backbend ]
11
11
  breath: inhale
12
12
  drishti: nasagrai
13
13
  cues:
14
14
  - Press evenly through hands and feet to lift the chest
15
15
  - Keep the knees tracking over the feet, do not splay
16
- contact: [toeL, toeR, handTipL, handTipR]
16
+ contact: [ toeL, toeR, handTipL, handTipR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: 195
20
+ pitch: -105
22
21
  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
22
+ pelvis: { azimuth: 180, elevation: -15 }
23
+ spine: { azimuth: 180, elevation: -30 }
24
+ neck: { azimuth: 180, elevation: -55 }
25
+ head: { azimuth: 180, elevation: -70 }
26
+ upperArmL: { azimuth: 0, elevation: -88 }
27
+ upperArmR: { azimuth: 0, elevation: -88 }
28
+ forearmL: { azimuth: 0, elevation: -88 }
29
+ forearmR: { azimuth: 0, elevation: -88 }
30
+ handL: { azimuth: 0, elevation: 0 }
31
+ handR: { azimuth: 0, elevation: 0 }
32
+ thighL: { azimuth: 0, elevation: -50 }
33
+ thighR: { azimuth: 0, elevation: -50 }
34
+ shinL: { azimuth: 180, elevation: -70 }
35
+ shinR: { azimuth: 180, elevation: -70 }
36
+ footL: { azimuth: 0, elevation: -15 }
37
+ footR: { azimuth: 0, elevation: -15 }
39
38
  props:
40
39
  - type: mat
41
40
  muscles:
42
- engaged: [gluteus, erectorSpinae, deltoid, triceps, quadriceps]
43
- stretched: [pectoralis, rectusAbdominis, hipFlexors]
41
+ engaged: [ gluteus, erectorSpinae, deltoid, triceps, quadriceps ]
42
+ stretched: [ pectoralis, rectusAbdominis, hipFlexors ]
43
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: urdhva-hastasana
3
3
  name: Upward Salute
4
4
  sanskrit: Ūrdhva Hastāsana
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: standing
8
8
  difficulty: 1
9
9
  description: First movement of Surya Namaskara. Arms sweep overhead, palms meet, gaze to the thumbs.
10
- tags: [ashtanga, surya-namaskara-a, standing, backbend]
10
+ tags: [ ashtanga, surya-namaskara-a, standing, backbend ]
11
11
  breath: inhale
12
12
  drishti: angustha-ma-dyai
13
13
  cues:
14
14
  - Sweep the arms wide and up on the inhale
15
15
  - Lift the chest, keep the ribs knitted
16
- contact: [toeL, toeR]
16
+ contact: [ toeL, toeR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: 93
20
+ pitch: -3
22
21
  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
22
+ thighL: { azimuth: 0, elevation: -90 }
23
+ thighR: { azimuth: 0, elevation: -90 }
24
+ shinL: { azimuth: 0, elevation: -90 }
25
+ shinR: { azimuth: 0, elevation: -90 }
26
+ footL: { azimuth: 0, elevation: -18 }
27
+ footR: { azimuth: 0, elevation: -18 }
28
+ spine: { azimuth: 180, elevation: 83 }
29
+ neck: { azimuth: 180, elevation: 75 }
30
+ head: { azimuth: 180, elevation: 70 }
31
+ upperArmL: { azimuth: 180, elevation: 80 }
32
+ upperArmR: { azimuth: 180, elevation: 80 }
33
+ forearmL: { azimuth: 180, elevation: 82 }
34
+ forearmR: { azimuth: 180, elevation: 82 }
35
+ handL: { azimuth: 180, elevation: 84 }
36
+ handR: { azimuth: 180, elevation: 84 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [deltoid, erectorSpinae, quadriceps]
42
- stretched: [rectusAbdominis, latissimus]
40
+ engaged: [ deltoid, erectorSpinae, quadriceps ]
41
+ stretched: [ rectusAbdominis, latissimus ]
42
+ camera: front
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: urdhva-mukha-svanasana
3
3
  name: Upward-Facing Dog
4
4
  sanskrit: Ūrdhva Mukha Śvānāsana
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: backbend
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, surya-namaskara-a, backbend, arm-support ]
11
11
  breath: inhale
12
12
  drishti: urdhva
13
13
  cues:
14
14
  - Press the floor away, lift the thighs
15
15
  - Draw the chest through the arms, shoulders back
16
- contact: [toeL, toeR, handTipL, handTipR]
16
+ contact: [ toeL, toeR, handTipL, handTipR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: 30
20
+ pitch: 60
22
21
  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
22
+ spine: { azimuth: 0, elevation: 55 }
23
+ neck: { azimuth: 0, elevation: 80 }
24
+ head: { azimuth: 180, elevation: 75 }
25
+ thighL: { azimuth: 180, elevation: -12 }
26
+ thighR: { azimuth: 180, elevation: -12 }
27
+ shinL: { azimuth: 180, elevation: -8 }
28
+ shinR: { azimuth: 180, elevation: -8 }
29
+ footL: { azimuth: 180, elevation: -20 }
30
+ footR: { azimuth: 180, elevation: -20 }
31
+ upperArmL: { azimuth: 0, elevation: -80 }
32
+ upperArmR: { azimuth: 0, elevation: -80 }
33
+ forearmL: { azimuth: 0, elevation: -86 }
34
+ forearmR: { azimuth: 0, elevation: -86 }
35
+ handL: { azimuth: 0, elevation: 0 }
36
+ handR: { azimuth: 0, elevation: 0 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [erectorSpinae, triceps, gluteus, deltoid]
42
- stretched: [rectusAbdominis, pectoralis, hipFlexors]
40
+ engaged: [ erectorSpinae, triceps, gluteus, deltoid ]
41
+ stretched: [ rectusAbdominis, pectoralis, hipFlexors ]
42
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: utkatasana
3
3
  name: Chair Pose
4
4
  sanskrit: Utkaṭāsana
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: standing
8
8
  difficulty: 2
9
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]
10
+ tags: [ ashtanga, surya-namaskara-b, standing ]
11
11
  breath: inhale
12
12
  drishti: angustha-ma-dyai
13
13
  cues:
14
14
  - Sit the hips back, keep the knees over the ankles
15
15
  - Reach the arms up alongside the ears
16
- contact: [toeL, toeR]
16
+ contact: [ toeL, toeR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: 70
20
+ pitch: 20
22
21
  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
22
+ thighL: { azimuth: 0, elevation: -30 }
23
+ thighR: { azimuth: 0, elevation: -30 }
24
+ shinL: { azimuth: 180, elevation: -80 }
25
+ shinR: { azimuth: 180, elevation: -80 }
26
+ footL: { azimuth: 0, elevation: -18 }
27
+ footR: { azimuth: 0, elevation: -18 }
28
+ spine: { azimuth: 0, elevation: 65 }
29
+ neck: { azimuth: 0, elevation: 70 }
30
+ head: { azimuth: 0, elevation: 72 }
31
+ upperArmL: { azimuth: 0, elevation: 78 }
32
+ upperArmR: { azimuth: 0, elevation: 78 }
33
+ forearmL: { azimuth: 0, elevation: 80 }
34
+ forearmR: { azimuth: 0, elevation: 80 }
35
+ handL: { azimuth: 0, elevation: 82 }
36
+ handR: { azimuth: 0, elevation: 82 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [quadriceps, gluteus, erectorSpinae, deltoid]
42
- stretched: [gastrocnemius, latissimus]
40
+ engaged: [ quadriceps, gluteus, erectorSpinae, deltoid ]
41
+ stretched: [ gastrocnemius, latissimus ]
42
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: uttanasana
3
3
  name: Standing Forward Fold
4
4
  sanskrit: Uttānāsana
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: standing
8
8
  difficulty: 2
9
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]
10
+ tags: [ ashtanga, surya-namaskara-a, standing, forward-fold ]
11
11
  breath: exhale
12
12
  drishti: nasagrai
13
13
  cues:
14
14
  - Hinge from the hip joints, not the waist
15
15
  - Lengthen the spine before rounding
16
- contact: [toeL, toeR, handTipL, handTipR]
16
+ contact: [ toeL, toeR, handTipL, handTipR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: -70
20
+ pitch: 160
22
21
  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
22
+ thighL: { azimuth: 0, elevation: -90 }
23
+ thighR: { azimuth: 0, elevation: -90 }
24
+ shinL: { azimuth: 0, elevation: -90 }
25
+ shinR: { azimuth: 0, elevation: -90 }
26
+ footL: { azimuth: 0, elevation: -18 }
27
+ footR: { azimuth: 0, elevation: -18 }
28
+ spine: { azimuth: 0, elevation: -80 }
29
+ neck: { azimuth: 0, elevation: -90 }
30
+ head: { azimuth: 180, elevation: -85 }
31
+ upperArmL: { azimuth: 180, elevation: -85 }
32
+ upperArmR: { azimuth: 180, elevation: -85 }
33
+ forearmL: { azimuth: 0, elevation: -50 }
34
+ forearmR: { azimuth: 0, elevation: -50 }
35
+ handL: { azimuth: 0, elevation: -8 }
36
+ handR: { azimuth: 0, elevation: -8 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [quadriceps, rectusAbdominis]
42
- stretched: [hamstrings, erectorSpinae, gastrocnemius]
40
+ engaged: [ quadriceps, rectusAbdominis ]
41
+ stretched: [ hamstrings, erectorSpinae, gastrocnemius ]
42
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: utthita-parsvakonasana
3
3
  name: Extended Side Angle
4
4
  sanskrit: Utthita Pārśvakoṇāsana
@@ -7,38 +7,38 @@ discipline: yoga
7
7
  family: standing
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, standing, side-bend, primary-series ]
11
11
  breath: exhale
12
12
  drishti: hastagrai
13
13
  cues:
14
14
  - Front shin vertical, knee stacked over the ankle
15
15
  - Press the back heel down and stretch the top arm over the ear
16
- contact: [toeL, toeR, handTipL]
16
+ contact: [ toeL, toeR, handTipL ]
17
17
  figure:
18
- view: front
19
18
  grounded: true
20
19
  root:
21
- rotation: 30
20
+ roll: -60
22
21
  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
22
+ hipL: { azimuth: 90, elevation: 0 }
23
+ hipR: { azimuth: -90, elevation: 0 }
24
+ thighL: { azimuth: 90, elevation: 0 }
25
+ shinL: { azimuth: 90, elevation: -90 }
26
+ footL: { azimuth: 90, elevation: -10 }
27
+ thighR: { azimuth: -90, elevation: -30 }
28
+ shinR: { azimuth: -90, elevation: -30 }
29
+ footR: { azimuth: -90, elevation: -10 }
30
+ spine: { azimuth: 90, elevation: 30 }
31
+ neck: { azimuth: 90, elevation: 35 }
32
+ head: { azimuth: 90, elevation: 55 }
33
+ upperArmL: { azimuth: 90, elevation: -55 }
34
+ forearmL: { azimuth: 90, elevation: -55 }
35
+ handL: { azimuth: 90, elevation: -55 }
36
+ upperArmR: { azimuth: 90, elevation: 30 }
37
+ forearmR: { azimuth: 90, elevation: 30 }
38
+ handR: { azimuth: 90, elevation: 30 }
40
39
  props:
41
40
  - type: mat
42
41
  muscles:
43
- engaged: [quadriceps, gluteus, obliques, deltoid]
44
- stretched: [adductors, latissimus, obliques, hipFlexors]
42
+ engaged: [ quadriceps, gluteus, obliques, deltoid ]
43
+ stretched: [ adductors, latissimus, obliques, hipFlexors ]
44
+ camera: front
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: utthita-trikonasana
3
3
  name: Extended Triangle
4
4
  sanskrit: Utthita Trikoṇāsana
@@ -7,38 +7,38 @@ discipline: yoga
7
7
  family: standing
8
8
  difficulty: 2
9
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]
10
+ tags: [ ashtanga, standing, side-bend, primary-series ]
11
11
  breath: exhale
12
12
  drishti: hastagrai
13
13
  cues:
14
14
  - Reach sideways out of the waist before you tilt down
15
15
  - Stack both shoulders in one line, chest open to the side
16
- contact: [toeL, toeR, handTipL]
16
+ contact: [ toeL, toeR, handTipL ]
17
17
  figure:
18
- view: front
19
18
  grounded: true
20
19
  root:
21
- rotation: 25
20
+ roll: -65
22
21
  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
22
+ hipL: { azimuth: 90, elevation: 0 }
23
+ hipR: { azimuth: -90, elevation: 0 }
24
+ thighL: { azimuth: 90, elevation: -45 }
25
+ shinL: { azimuth: 90, elevation: -45 }
26
+ footL: { azimuth: 90, elevation: 0 }
27
+ thighR: { azimuth: -90, elevation: -45 }
28
+ shinR: { azimuth: -90, elevation: -45 }
29
+ footR: { azimuth: -90, elevation: 0 }
30
+ spine: { azimuth: 90, elevation: 25 }
31
+ neck: { azimuth: 90, elevation: 30 }
32
+ head: { azimuth: 90, elevation: 55 }
33
+ upperArmL: { azimuth: 90, elevation: -80 }
34
+ forearmL: { azimuth: 90, elevation: -80 }
35
+ handL: { azimuth: 90, elevation: -80 }
36
+ upperArmR: { azimuth: -90, elevation: 80 }
37
+ forearmR: { azimuth: -90, elevation: 80 }
38
+ handR: { azimuth: -90, elevation: 80 }
40
39
  props:
41
40
  - type: mat
42
41
  muscles:
43
- engaged: [quadriceps, obliques, deltoid, erectorSpinae]
44
- stretched: [hamstrings, adductors, obliques, latissimus]
42
+ engaged: [ quadriceps, obliques, deltoid, erectorSpinae ]
43
+ stretched: [ hamstrings, adductors, obliques, latissimus ]
44
+ camera: front
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: virabhadrasana-a
3
3
  name: Warrior I
4
4
  sanskrit: Vīrabhadrāsana A
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: standing
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, standing, lunge, backbend ]
11
11
  breath: inhale
12
12
  drishti: angustha-ma-dyai
13
13
  cues:
14
14
  - Front knee tracks over the ankle, back leg straight and strong
15
15
  - Lift the chest, reach the fingertips up
16
- contact: [toeL, toeR]
16
+ contact: [ toeL, toeR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: 88
20
+ pitch: 2
22
21
  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
22
+ thighL: { azimuth: 0, elevation: -15 }
23
+ shinL: { azimuth: 180, elevation: -85 }
24
+ footL: { azimuth: 0, elevation: -18 }
25
+ thighR: { azimuth: 180, elevation: -38 }
26
+ shinR: { azimuth: 180, elevation: -38 }
27
+ footR: { azimuth: 0, elevation: -15 }
28
+ spine: { azimuth: 180, elevation: 88 }
29
+ neck: { azimuth: 180, elevation: 83 }
30
+ head: { azimuth: 180, elevation: 80 }
31
+ upperArmL: { azimuth: 180, elevation: 81 }
32
+ upperArmR: { azimuth: 180, elevation: 81 }
33
+ forearmL: { azimuth: 180, elevation: 83 }
34
+ forearmR: { azimuth: 180, elevation: 83 }
35
+ handL: { azimuth: 180, elevation: 85 }
36
+ handR: { azimuth: 180, elevation: 85 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [quadriceps, gluteus, erectorSpinae, deltoid]
42
- stretched: [hipFlexors, gastrocnemius, pectoralis]
40
+ engaged: [ quadriceps, gluteus, erectorSpinae, deltoid ]
41
+ stretched: [ hipFlexors, gastrocnemius, pectoralis ]
42
+ camera: side