@franzenzenhofer/asanakit 0.1.0 → 0.2.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 +78 -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 +12 -3
  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 +40 -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 +16 -0
  144. package/dist/viewer/html.d.ts.map +1 -0
  145. package/dist/viewer/html.js +59 -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 -5
  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: halasana
3
3
  name: Plough Pose
4
4
  sanskrit: Halāsana
@@ -7,37 +7,37 @@ discipline: yoga
7
7
  family: inversion
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, finishing, inversion, forward-fold ]
11
11
  breath: exhale
12
12
  drishti: nabi-chakra
13
13
  cues:
14
14
  - Keep the legs straight, lift the sit bones toward the ceiling
15
15
  - Weight stays in the shoulders, the neck stays soft
16
- contact: [shoulderL, shoulderR, elbowL, elbowR, handTipL, handTipR, headTop, toeL, toeR]
16
+ contact: [ shoulderL, shoulderR, elbowL, elbowR, handTipL, handTipR, headTop, toeL, toeR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: -90
20
+ pitch: 180
22
21
  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
22
+ pelvis: { azimuth: 0, elevation: -90 }
23
+ spine: { azimuth: 0, elevation: -90 }
24
+ neck: { azimuth: 180, elevation: 0 }
25
+ head: { azimuth: 180, elevation: 0 }
26
+ upperArmL: { azimuth: 0, elevation: 0 }
27
+ upperArmR: { azimuth: 0, elevation: 0 }
28
+ forearmL: { azimuth: 0, elevation: 0 }
29
+ forearmR: { azimuth: 0, elevation: 0 }
30
+ handL: { azimuth: 0, elevation: 0 }
31
+ handR: { azimuth: 0, elevation: 0 }
32
+ thighL: { azimuth: 180, elevation: -33 }
33
+ thighR: { azimuth: 180, elevation: -33 }
34
+ shinL: { azimuth: 180, elevation: -33 }
35
+ shinR: { azimuth: 180, elevation: -33 }
36
+ footL: { azimuth: 180, elevation: -5 }
37
+ footR: { azimuth: 180, elevation: -5 }
39
38
  props:
40
39
  - type: mat
41
40
  muscles:
42
- engaged: [rectusAbdominis, quadriceps, deltoid]
43
- stretched: [hamstrings, erectorSpinae, trapezius, gastrocnemius]
41
+ engaged: [ rectusAbdominis, quadriceps, deltoid ]
42
+ stretched: [ hamstrings, erectorSpinae, trapezius, gastrocnemius ]
43
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: janu-sirsasana-a
3
3
  name: Head-to-Knee Pose A
4
4
  sanskrit: Jānu Śīrṣāsana A
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: seated
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, primary-series, seated, forward-fold ]
11
11
  breath: exhale
12
12
  drishti: padhayoragrai
13
13
  cues:
14
14
  - Square the chest over the straight leg before you fold
15
15
  - Press the bent knee back and keep the straight-leg thigh firm
16
- contact: [hipCenter, hipJointL, hipJointR, kneeL, ankleL]
16
+ contact: [ hipCenter, hipJointL, hipJointR, kneeL, ankleL ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: 32
20
+ pitch: 58
22
21
  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
22
+ thighL: { azimuth: 0, elevation: 0 }
23
+ shinL: { azimuth: 0, elevation: 0 }
24
+ footL: { azimuth: 0, elevation: 75 }
25
+ thighR: { azimuth: 0, elevation: 80 }
26
+ shinR: { azimuth: 0, elevation: -60 }
27
+ footR: { azimuth: 180, elevation: 10 }
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, erectorSpinae, adductors]
40
+ engaged: [ quadriceps, rectusAbdominis ]
41
+ stretched: [ hamstrings, erectorSpinae, adductors ]
42
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: karnapidasana
3
3
  name: Ear Pressure Pose
4
4
  sanskrit: Karṇapīḍāsana
@@ -7,37 +7,37 @@ discipline: yoga
7
7
  family: inversion
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, finishing, inversion, forward-fold ]
11
11
  breath: exhale
12
12
  drishti: nasagrai
13
13
  cues:
14
14
  - Let the knees squeeze gently in beside the ears
15
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]
16
+ contact: [ shoulderL, shoulderR, elbowL, elbowR, handTipL, handTipR, headTop, kneeL, kneeR, ankleL, ankleR, toeL, toeR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: -60
20
+ pitch: 150
22
21
  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
22
+ pelvis: { azimuth: 0, elevation: -60 }
23
+ spine: { azimuth: 0, elevation: -60 }
24
+ neck: { azimuth: 180, elevation: 0 }
25
+ head: { azimuth: 180, elevation: 0 }
26
+ upperArmL: { azimuth: 0, elevation: 0 }
27
+ upperArmR: { azimuth: 0, elevation: 0 }
28
+ forearmL: { azimuth: 0, elevation: 0 }
29
+ forearmR: { azimuth: 0, elevation: 0 }
30
+ handL: { azimuth: 0, elevation: 0 }
31
+ handR: { azimuth: 0, elevation: 0 }
32
+ thighL: { azimuth: 180, elevation: -61 }
33
+ thighR: { azimuth: 180, elevation: -61 }
34
+ shinL: { azimuth: 180, elevation: 0 }
35
+ shinR: { azimuth: 180, elevation: 0 }
36
+ footL: { azimuth: 180, elevation: -5 }
37
+ footR: { azimuth: 180, elevation: -5 }
39
38
  props:
40
39
  - type: mat
41
40
  muscles:
42
- engaged: [rectusAbdominis, deltoid]
43
- stretched: [erectorSpinae, trapezius, gluteus, hamstrings]
41
+ engaged: [ rectusAbdominis, deltoid ]
42
+ stretched: [ erectorSpinae, trapezius, gluteus, hamstrings ]
43
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: marichyasana-a
3
3
  name: Pose Dedicated to the Sage Marichi A
4
4
  sanskrit: Marīcyāsana A
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: seated
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, primary-series, seated, forward-fold, bind ]
11
11
  breath: exhale
12
12
  drishti: padhayoragrai
13
13
  cues:
14
14
  - Wrap the shoulder low around the shin before you reach for the bind
15
15
  - Keep the straight-leg foot flexed and the thigh pressing down
16
- contact: [hipCenter, hipJointL, hipJointR, kneeL, ankleL, ankleR, toeR]
16
+ contact: [ hipCenter, hipJointL, hipJointR, kneeL, ankleL, ankleR, toeR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: 18
20
+ pitch: 72
22
21
  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
22
+ thighL: { azimuth: 0, elevation: 0 }
23
+ shinL: { azimuth: 0, elevation: 0 }
24
+ footL: { azimuth: 0, elevation: 75 }
25
+ thighR: { azimuth: 0, elevation: 78 }
26
+ shinR: { azimuth: 0, elevation: -78 }
27
+ footR: { azimuth: 0, elevation: 0 }
28
+ spine: { azimuth: 0, elevation: 24 }
29
+ neck: { azimuth: 0, elevation: 8 }
30
+ head: { azimuth: 0, elevation: -8 }
31
+ upperArmL: { azimuth: 180, elevation: -5 }
32
+ forearmL: { azimuth: 180, elevation: -12 }
33
+ handL: { azimuth: 180, elevation: 0 }
34
+ upperArmR: { azimuth: 180, elevation: -8 }
35
+ forearmR: { azimuth: 180, elevation: -15 }
36
+ handR: { azimuth: 180, elevation: 0 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [rectusAbdominis, deltoid, quadriceps]
42
- stretched: [hamstrings, erectorSpinae, pectoralis]
40
+ engaged: [ rectusAbdominis, deltoid, quadriceps ]
41
+ stretched: [ hamstrings, erectorSpinae, pectoralis ]
42
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: marichyasana-c
3
3
  name: Pose Dedicated to the Sage Marichi C
4
4
  sanskrit: Marīcyāsana C
@@ -7,36 +7,34 @@ discipline: yoga
7
7
  family: seated
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, primary-series, seated, twist ]
11
11
  breath: exhale
12
12
  drishti: parsva
13
13
  cues:
14
14
  - Lengthen up on the inhale, turn on the exhale
15
15
  - Press the elbow against the knee and the knee back into the elbow
16
- contact: [hipCenter, hipJointL, hipJointR, kneeL, ankleL, ankleR, toeR, handTipR]
16
+ contact: [ hipCenter, hipJointL, hipJointR, kneeL, ankleL, ankleR, toeR, handTipR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
- root:
21
- rotation: 90
22
19
  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
20
+ thighL: { azimuth: 0, elevation: 0 }
21
+ shinL: { azimuth: 0, elevation: 0 }
22
+ footL: { azimuth: 0, elevation: 75 }
23
+ thighR: { azimuth: 0, elevation: 78 }
24
+ shinR: { azimuth: 0, elevation: -78 }
25
+ footR: { azimuth: 0, elevation: 0 }
26
+ spine: { azimuth: 180, elevation: 88 }
27
+ neck: { azimuth: 180, elevation: 84 }
28
+ head: { azimuth: 180, elevation: 75 }
29
+ upperArmL: { azimuth: 0, elevation: -60 }
30
+ forearmL: { azimuth: 0, elevation: 75 }
31
+ handL: { azimuth: 0, elevation: 85 }
32
+ upperArmR: { azimuth: 180, elevation: -48 }
33
+ forearmR: { azimuth: 180, elevation: -48 }
34
+ handR: { azimuth: 180, elevation: -48 }
38
35
  props:
39
36
  - type: mat
40
37
  muscles:
41
- engaged: [obliques, erectorSpinae, deltoid]
42
- stretched: [obliques, gluteus, trapezius]
38
+ engaged: [ obliques, erectorSpinae, deltoid ]
39
+ stretched: [ obliques, gluteus, trapezius ]
40
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: matsyasana
3
3
  name: Fish Pose
4
4
  sanskrit: Matsyāsana
@@ -7,37 +7,37 @@ discipline: yoga
7
7
  family: backbend
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, finishing, backbend, supine ]
11
11
  breath: inhale
12
12
  drishti: broomadhya
13
13
  cues:
14
14
  - Lift the chest first, then let the head tip back
15
15
  - Press the elbows down, keep weight off the neck
16
- contact: [hipCenter, elbowL, elbowR, handTipL, handTipR, ankleL, ankleR, headTop]
16
+ contact: [ hipCenter, elbowL, elbowR, handTipL, handTipR, ankleL, ankleR, headTop ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: 165
20
+ pitch: -75
22
21
  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
22
+ pelvis: { azimuth: 180, elevation: 15 }
23
+ spine: { azimuth: 180, elevation: 55 }
24
+ neck: { azimuth: 180, elevation: -30 }
25
+ head: { azimuth: 0, elevation: -90 }
26
+ upperArmL: { azimuth: 0, elevation: -90 }
27
+ upperArmR: { azimuth: 0, elevation: -90 }
28
+ forearmL: { azimuth: 0, elevation: 0 }
29
+ forearmR: { azimuth: 0, elevation: 0 }
30
+ handL: { azimuth: 0, elevation: 0 }
31
+ handR: { azimuth: 0, elevation: 0 }
32
+ thighL: { azimuth: 0, elevation: 0 }
33
+ thighR: { azimuth: 0, elevation: 0 }
34
+ shinL: { azimuth: 0, elevation: 0 }
35
+ shinR: { azimuth: 0, elevation: 0 }
36
+ footL: { azimuth: 0, elevation: 25 }
37
+ footR: { azimuth: 0, elevation: 25 }
39
38
  props:
40
39
  - type: mat
41
40
  muscles:
42
- engaged: [erectorSpinae, trapezius, triceps, quadriceps]
43
- stretched: [pectoralis, rectusAbdominis, hipFlexors]
41
+ engaged: [ erectorSpinae, trapezius, triceps, quadriceps ]
42
+ stretched: [ pectoralis, rectusAbdominis, hipFlexors ]
43
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: navasana
3
3
  name: Boat Pose
4
4
  sanskrit: Nāvāsana
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: core
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, core, balance, primary-series ]
11
11
  breath: inhale
12
12
  drishti: padhayoragrai
13
13
  cues:
14
14
  - Lift the chest, do not let the lower back round
15
15
  - Straighten the legs and reach the arms parallel to the floor
16
- contact: [hipCenter]
16
+ contact: [ hipCenter ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: 135
20
+ pitch: -45
22
21
  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
22
+ thighL: { azimuth: 0, elevation: 45 }
23
+ thighR: { azimuth: 0, elevation: 45 }
24
+ shinL: { azimuth: 0, elevation: 45 }
25
+ shinR: { azimuth: 0, elevation: 45 }
26
+ footL: { azimuth: 0, elevation: 30 }
27
+ footR: { azimuth: 0, elevation: 30 }
28
+ spine: { azimuth: 180, elevation: 45 }
29
+ neck: { azimuth: 180, elevation: 50 }
30
+ head: { azimuth: 180, elevation: 65 }
31
+ upperArmL: { azimuth: 0, elevation: 0 }
32
+ upperArmR: { azimuth: 0, elevation: 0 }
33
+ forearmL: { azimuth: 0, elevation: 0 }
34
+ forearmR: { azimuth: 0, elevation: 0 }
35
+ handL: { azimuth: 0, elevation: 0 }
36
+ handR: { azimuth: 0, elevation: 0 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [rectusAbdominis, hipFlexors, quadriceps, erectorSpinae, deltoid]
42
- stretched: [hamstrings]
40
+ engaged: [ rectusAbdominis, hipFlexors, quadriceps, erectorSpinae, deltoid ]
41
+ stretched: [ hamstrings ]
42
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: padahastasana
3
3
  name: Hand Under Foot Pose
4
4
  sanskrit: Pādahastāsana
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: standing
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, standing, forward-fold ]
11
11
  breath: exhale
12
12
  drishti: nasagrai
13
13
  cues:
14
14
  - Slide the palms under the feet, fingertips to the heels
15
15
  - Bend the elbows back and lengthen the spine down
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: -78
20
+ pitch: 168
22
21
  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
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: -86 }
29
+ neck: { azimuth: 0, elevation: -85 }
30
+ head: { azimuth: 0, elevation: -75 }
31
+ upperArmL: { azimuth: 180, elevation: -70 }
32
+ upperArmR: { azimuth: 180, elevation: -70 }
33
+ forearmL: { azimuth: 0, elevation: -43 }
34
+ forearmR: { azimuth: 0, elevation: -43 }
35
+ handL: { azimuth: 180, elevation: 0 }
36
+ handR: { azimuth: 180, elevation: 0 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [biceps, quadriceps, rectusAbdominis]
42
- stretched: [hamstrings, erectorSpinae, gastrocnemius, latissimus]
40
+ engaged: [ biceps, quadriceps, rectusAbdominis ]
41
+ stretched: [ hamstrings, erectorSpinae, gastrocnemius, latissimus ]
42
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: padangusthasana
3
3
  name: Big Toe Pose
4
4
  sanskrit: Pādāṅguṣṭhāsana
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: standing
8
8
  difficulty: 2
9
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]
10
+ tags: [ ashtanga, standing, forward-fold ]
11
11
  breath: exhale
12
12
  drishti: nasagrai
13
13
  cues:
14
14
  - Hook the big toes, lift the kneecaps
15
15
  - Pull on the toes to draw the chest toward the shins
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: -72
20
+ pitch: 162
22
21
  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
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: -82 }
29
+ neck: { azimuth: 0, elevation: -85 }
30
+ head: { azimuth: 0, elevation: -80 }
31
+ upperArmL: { azimuth: 180, elevation: -47 }
32
+ upperArmR: { azimuth: 180, elevation: -47 }
33
+ forearmL: { azimuth: 0, elevation: -38 }
34
+ forearmR: { azimuth: 0, elevation: -38 }
35
+ handL: { azimuth: 0, elevation: -60 }
36
+ handR: { azimuth: 0, elevation: -60 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [biceps, quadriceps, rectusAbdominis]
42
- stretched: [hamstrings, erectorSpinae, gastrocnemius]
40
+ engaged: [ biceps, quadriceps, rectusAbdominis ]
41
+ stretched: [ hamstrings, erectorSpinae, gastrocnemius ]
42
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: padmasana
3
3
  name: Lotus Pose
4
4
  sanskrit: Padmāsana
@@ -7,37 +7,35 @@ discipline: yoga
7
7
  family: seated
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, finishing, seated, meditation ]
11
11
  breath: free
12
12
  drishti: nasagrai
13
13
  cues:
14
14
  - Root the sit bones, grow tall through the crown
15
15
  - Let the knees settle, never force them down
16
- contact: [kneeL, kneeR, ankleL, ankleR]
16
+ contact: [ kneeL, kneeR, ankleL, ankleR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
- root:
21
- rotation: 90
22
19
  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
20
+ pelvis: { azimuth: 0, elevation: 90 }
21
+ spine: { azimuth: 0, elevation: 90 }
22
+ neck: { azimuth: 0, elevation: 90 }
23
+ head: { azimuth: 0, elevation: 90 }
24
+ upperArmL: { azimuth: 0, elevation: -65 }
25
+ upperArmR: { azimuth: 0, elevation: -65 }
26
+ forearmL: { azimuth: 0, elevation: -50 }
27
+ forearmR: { azimuth: 0, elevation: -50 }
28
+ handL: { azimuth: 0, elevation: -45 }
29
+ handR: { azimuth: 0, elevation: -45 }
30
+ thighL: { azimuth: 0, elevation: -20 }
31
+ thighR: { azimuth: 0, elevation: -20 }
32
+ shinL: { azimuth: 180, elevation: -1.5 }
33
+ shinR: { azimuth: 180, elevation: -1.5 }
34
+ footL: { azimuth: 0, elevation: 20 }
35
+ footR: { azimuth: 0, elevation: 20 }
39
36
  props:
40
37
  - type: mat
41
38
  muscles:
42
- engaged: [erectorSpinae, rectusAbdominis]
43
- stretched: [adductors, gluteus, quadriceps]
39
+ engaged: [ erectorSpinae, rectusAbdominis ]
40
+ stretched: [ adductors, gluteus, quadriceps ]
41
+ camera: side