@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: paddling
3
3
  name: Paddling
4
4
  english: Paddling
@@ -6,32 +6,31 @@ discipline: surf
6
6
  family: prone
7
7
  difficulty: 1
8
8
  description: Where ninety percent of surfing actually happens. The surfer lies prone and centred on the deck, chest lifted off the board, legs together over the tail, and pulls through the water one long arm at a time while the other arm recovers.
9
- tags: [surf, prone, paddling, fundamental, endurance]
9
+ tags: [ surf, prone, paddling, fundamental, endurance ]
10
10
  cues:
11
11
  - Chest up, back long - do not lie flat
12
12
  - Reach past your head and pull the water all the way to the hip
13
- contact: [hipCenter, kneeL, ankleL, ankleR]
13
+ contact: [ hipCenter, kneeL, ankleL, ankleR ]
14
14
  figure:
15
- view: side
16
15
  grounded: true
17
16
  root:
18
- rotation: 0
17
+ pitch: 90
19
18
  world:
20
- spine: 34
21
- neck: 44
22
- head: 28
23
- upperArmL: 4
24
- forearmL: -2
25
- handL: -8
26
- upperArmR: 145
27
- forearmR: 196
28
- handR: 200
29
- thighL: 180
30
- shinL: 180
31
- footL: 180
32
- thighR: 177
33
- shinR: 176
34
- footR: 176
19
+ spine: { azimuth: 0, elevation: 34 }
20
+ neck: { azimuth: 0, elevation: 44 }
21
+ head: { azimuth: 0, elevation: 28 }
22
+ upperArmL: { azimuth: 0, elevation: 4 }
23
+ forearmL: { azimuth: 0, elevation: -2 }
24
+ handL: { azimuth: 0, elevation: -8 }
25
+ upperArmR: { azimuth: 180, elevation: 35 }
26
+ forearmR: { azimuth: 180, elevation: -16 }
27
+ handR: { azimuth: 180, elevation: -20 }
28
+ thighL: { azimuth: 180, elevation: 0 }
29
+ shinL: { azimuth: 180, elevation: 0 }
30
+ footL: { azimuth: 180, elevation: 0 }
31
+ thighR: { azimuth: 180, elevation: 3 }
32
+ shinR: { azimuth: 180, elevation: 4 }
33
+ footR: { azimuth: 180, elevation: 4 }
35
34
  props:
36
35
  - type: wave
37
36
  amplitude: 0.22
@@ -39,10 +38,11 @@ props:
39
38
  y: -0.35
40
39
  breaking: false
41
40
  - type: surfboard
42
- under: [hipCenter, chest]
41
+ under: [ hipCenter, chest ]
43
42
  rotation: 0
44
43
  length: 1.5
45
- offset: [-0.12, -0.13]
44
+ offset: [ -0.12, -0.13 ]
46
45
  muscles:
47
- engaged: [latissimus, deltoid, trapezius, erectorSpinae, triceps]
48
- stretched: [pectoralis, rectusAbdominis]
46
+ engaged: [ latissimus, deltoid, trapezius, erectorSpinae, triceps ]
47
+ stretched: [ pectoralis, rectusAbdominis ]
48
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: pop-up
3
3
  name: Pop-Up
4
4
  english: Pop-Up
@@ -6,42 +6,42 @@ discipline: surf
6
6
  family: transition
7
7
  difficulty: 3
8
8
  description: The one explosive move that turns a paddler into a surfer. The hands press down on the deck under the chest, the hips lift, the back foot loads the tail and the front foot swings through under the body to land in the stance. It happens in one beat, without a knee ever touching the deck.
9
- tags: [surf, transition, dynamic, fundamental]
9
+ tags: [ surf, transition, dynamic, fundamental ]
10
10
  cues:
11
11
  - Press the deck away and lift the hips first
12
12
  - Swing the front foot under your chest - never through a knee
13
- contact: [handTipL, handTipR, toeR]
13
+ contact: [ handTipL, handTipR, toeR ]
14
14
  figure:
15
- view: side
16
15
  grounded: true
17
16
  root:
18
- rotation: 30
17
+ pitch: 60
19
18
  world:
20
- spine: 26
21
- neck: 18
22
- head: 10
23
- upperArmL: -80
24
- forearmL: -85
25
- handL: -88
26
- upperArmR: -94
27
- forearmR: -91
28
- handR: -88
29
- thighL: -2
30
- shinL: -114
31
- footL: 5
32
- thighR: -145
33
- shinR: -152
34
- footR: -178
19
+ spine: { azimuth: 0, elevation: 26 }
20
+ neck: { azimuth: 0, elevation: 18 }
21
+ head: { azimuth: 0, elevation: 10 }
22
+ upperArmL: { azimuth: 0, elevation: -80 }
23
+ forearmL: { azimuth: 0, elevation: -85 }
24
+ handL: { azimuth: 0, elevation: -88 }
25
+ upperArmR: { azimuth: 180, elevation: -86 }
26
+ forearmR: { azimuth: 180, elevation: -89 }
27
+ handR: { azimuth: 0, elevation: -88 }
28
+ thighL: { azimuth: 0, elevation: -2 }
29
+ shinL: { azimuth: 180, elevation: -66 }
30
+ footL: { azimuth: 0, elevation: 5 }
31
+ thighR: { azimuth: 180, elevation: -35 }
32
+ shinR: { azimuth: 180, elevation: -28 }
33
+ footR: { azimuth: 180, elevation: -2 }
35
34
  props:
36
35
  - type: wave
37
36
  amplitude: 0.35
38
37
  length: 3.4
39
38
  y: -0.3
40
39
  - type: surfboard
41
- under: [handTipL, toeR]
40
+ under: [ handTipL, toeR ]
42
41
  rotation: 0
43
42
  length: 1.3
44
- offset: [0, -0.09]
43
+ offset: [ 0, -0.09 ]
45
44
  muscles:
46
- engaged: [triceps, pectoralis, deltoid, rectusAbdominis, hipFlexors, serratus]
47
- stretched: [hamstrings, gluteus]
45
+ engaged: [ triceps, pectoralis, deltoid, rectusAbdominis, hipFlexors, serratus ]
46
+ stretched: [ hamstrings, gluteus ]
47
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: takeoff
3
3
  name: Takeoff
4
4
  english: Takeoff
@@ -6,42 +6,42 @@ discipline: surf
6
6
  family: riding
7
7
  difficulty: 3
8
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]
9
+ tags: [ surf, riding, dynamic, beginner-milestone ]
10
10
  cues:
11
11
  - Land low, both feet under the shoulders
12
12
  - Look down the line, not at your feet
13
- contact: [toeL, toeR]
13
+ contact: [ toeL, toeR ]
14
14
  figure:
15
- view: side
16
15
  grounded: true
17
16
  root:
18
- rotation: 72
17
+ pitch: 18
19
18
  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
19
+ spine: { azimuth: 0, elevation: 62 }
20
+ neck: { azimuth: 0, elevation: 55 }
21
+ head: { azimuth: 0, elevation: 50 }
22
+ thighL: { azimuth: 0, elevation: -35 }
23
+ shinL: { azimuth: 180, elevation: -65 }
24
+ footL: { azimuth: 0, elevation: -15 }
25
+ thighR: { azimuth: 0, elevation: -70 }
26
+ shinR: { azimuth: 180, elevation: -25 }
27
+ footR: { azimuth: 0, elevation: -15 }
28
+ upperArmL: { azimuth: 0, elevation: -25 }
29
+ forearmL: { azimuth: 0, elevation: -5 }
30
+ handL: { azimuth: 0, elevation: 0 }
31
+ upperArmR: { azimuth: 180, elevation: 30 }
32
+ forearmR: { azimuth: 180, elevation: 5 }
33
+ handR: { azimuth: 180, elevation: 5 }
35
34
  props:
36
35
  - type: wave
37
36
  amplitude: 0.4
38
37
  length: 3.2
39
38
  y: -0.18
40
39
  - type: surfboard
41
- under: [ankleL, ankleR]
40
+ under: [ ankleL, ankleR ]
42
41
  rotation: -8
43
42
  length: 1.15
44
- offset: [0, -0.1]
43
+ offset: [ 0, -0.1 ]
45
44
  muscles:
46
- engaged: [quadriceps, gluteus, deltoid, erectorSpinae, tibialisAnterior]
47
- stretched: [hipFlexors, gastrocnemius]
45
+ engaged: [ quadriceps, gluteus, deltoid, erectorSpinae, tibialisAnterior ]
46
+ stretched: [ hipFlexors, gastrocnemius ]
47
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: tube-stance
3
3
  name: Tube Stance
4
4
  english: Tube Stance
@@ -6,42 +6,42 @@ discipline: surf
6
6
  family: riding
7
7
  difficulty: 5
8
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]
9
+ tags: [ surf, riding, barrel, advanced ]
10
10
  cues:
11
11
  - Make yourself small and stay quiet on the board
12
12
  - Trail the back hand on the face to hold your line
13
- contact: [toeL, toeR]
13
+ contact: [ toeL, toeR ]
14
14
  figure:
15
- view: side
16
15
  grounded: true
17
16
  root:
18
- rotation: 75
17
+ pitch: 15
19
18
  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
19
+ spine: { azimuth: 0, elevation: 78 }
20
+ neck: { azimuth: 0, elevation: 52 }
21
+ head: { azimuth: 0, elevation: 32 }
22
+ thighL: { azimuth: 0, elevation: -20 }
23
+ shinL: { azimuth: 180, elevation: -75 }
24
+ footL: { azimuth: 0, elevation: -15 }
25
+ thighR: { azimuth: 0, elevation: -65 }
26
+ shinR: { azimuth: 180, elevation: -25 }
27
+ footR: { azimuth: 0, elevation: -10 }
28
+ upperArmL: { azimuth: 0, elevation: -30 }
29
+ forearmL: { azimuth: 0, elevation: 20 }
30
+ handL: { azimuth: 0, elevation: 25 }
31
+ upperArmR: { azimuth: 180, elevation: -35 }
32
+ forearmR: { azimuth: 180, elevation: -45 }
33
+ handR: { azimuth: 180, elevation: -50 }
35
34
  props:
36
35
  - type: wave
37
36
  amplitude: 0.5
38
37
  length: 3.2
39
38
  y: -0.25
40
39
  - type: surfboard
41
- under: [ankleL, ankleR]
40
+ under: [ ankleL, ankleR ]
42
41
  rotation: -4
43
42
  length: 1.1
44
- offset: [0, -0.1]
43
+ offset: [ 0, -0.1 ]
45
44
  muscles:
46
- engaged: [quadriceps, gluteus, rectusAbdominis, obliques, tibialisAnterior]
47
- stretched: [erectorSpinae, latissimus]
45
+ engaged: [ quadriceps, gluteus, rectusAbdominis, obliques, tibialisAnterior ]
46
+ stretched: [ erectorSpinae, latissimus ]
47
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: adho-mukha-svanasana
3
3
  name: Downward-Facing Dog
4
4
  sanskrit: Adho Mukha Śvānāsana
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: inversion
8
8
  difficulty: 2
9
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]
10
+ tags: [ ashtanga, surya-namaskara-a, surya-namaskara-b, inversion, forward-fold ]
11
11
  breath: exhale
12
12
  drishti: nabi-chakra
13
13
  cues:
14
14
  - Lift the sit bones, lengthen the spine
15
15
  - Press the floor away through the whole hand
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: -48
20
+ pitch: 138
22
21
  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
22
+ thighL: { azimuth: 180, elevation: -55 }
23
+ thighR: { azimuth: 180, elevation: -55 }
24
+ shinL: { azimuth: 180, elevation: -55 }
25
+ shinR: { azimuth: 180, elevation: -55 }
26
+ footL: { azimuth: 0, elevation: -20 }
27
+ footR: { azimuth: 0, elevation: -20 }
28
+ spine: { azimuth: 0, elevation: -48 }
29
+ neck: { azimuth: 0, elevation: -48 }
30
+ head: { azimuth: 0, elevation: -48 }
31
+ upperArmL: { azimuth: 0, elevation: -50 }
32
+ upperArmR: { azimuth: 0, elevation: -50 }
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: [deltoid, triceps, quadriceps, serratus]
42
- stretched: [hamstrings, gastrocnemius, latissimus]
40
+ engaged: [ deltoid, triceps, quadriceps, serratus ]
41
+ stretched: [ hamstrings, gastrocnemius, latissimus ]
42
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: ardha-uttanasana
3
3
  name: Half Forward Fold
4
4
  sanskrit: Ardha Uttānāsana
@@ -7,36 +7,36 @@ discipline: yoga
7
7
  family: standing
8
8
  difficulty: 2
9
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]
10
+ tags: [ ashtanga, surya-namaskara-a, standing ]
11
11
  breath: inhale
12
12
  drishti: broomadhya
13
13
  cues:
14
14
  - Flat back, chest forward
15
15
  - Draw the shoulders away from the ears
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: -42
20
+ pitch: 132
22
21
  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
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: -22 }
29
+ neck: { azimuth: 0, elevation: -4 }
30
+ head: { azimuth: 0, elevation: 0 }
31
+ upperArmL: { azimuth: 180, elevation: -88 }
32
+ upperArmR: { azimuth: 180, elevation: -88 }
33
+ forearmL: { azimuth: 180, elevation: -88 }
34
+ forearmR: { azimuth: 180, elevation: -88 }
35
+ handL: { azimuth: 0, elevation: -80 }
36
+ handR: { azimuth: 0, elevation: -80 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [erectorSpinae, quadriceps]
42
- stretched: [hamstrings]
40
+ engaged: [ erectorSpinae, quadriceps ]
41
+ stretched: [ hamstrings ]
42
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: baddha-konasana
3
3
  name: Bound Angle Pose
4
4
  sanskrit: Baddha Koṇāsana
@@ -7,36 +7,34 @@ discipline: yoga
7
7
  family: seated
8
8
  difficulty: 2
9
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]
10
+ tags: [ ashtanga, primary-series, seated, hip-opener ]
11
11
  breath: free
12
12
  drishti: nasagrai
13
13
  cues:
14
14
  - Draw the heels in, let the knees fall wide
15
15
  - Lift the chest, hold the feet and open them like a book
16
- contact: [hipCenter, hipJointL, hipJointR, ankleL, ankleR]
16
+ contact: [ hipCenter, hipJointL, hipJointR, ankleL, ankleR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
- root:
21
- rotation: 90
22
19
  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
20
+ thighL: { azimuth: 0, elevation: 62 }
21
+ shinL: { azimuth: 0, elevation: -62 }
22
+ footL: { azimuth: 0, elevation: 55 }
23
+ thighR: { azimuth: 0, elevation: 62 }
24
+ shinR: { azimuth: 0, elevation: -62 }
25
+ footR: { azimuth: 0, elevation: 55 }
26
+ spine: { azimuth: 0, elevation: 88 }
27
+ neck: { azimuth: 0, elevation: 90 }
28
+ head: { azimuth: 0, elevation: 90 }
29
+ upperArmL: { azimuth: 0, elevation: -65 }
30
+ forearmL: { azimuth: 0, elevation: -40 }
31
+ handL: { azimuth: 0, elevation: -10 }
32
+ upperArmR: { azimuth: 0, elevation: -65 }
33
+ forearmR: { azimuth: 0, elevation: -40 }
34
+ handR: { azimuth: 0, elevation: -10 }
38
35
  props:
39
36
  - type: mat
40
37
  muscles:
41
- engaged: [erectorSpinae, gluteus]
42
- stretched: [adductors, hipFlexors]
38
+ engaged: [ erectorSpinae, gluteus ]
39
+ stretched: [ adductors, hipFlexors ]
40
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: balasana
3
3
  name: Child's Pose
4
4
  sanskrit: Bālāsana
@@ -7,37 +7,37 @@ discipline: yoga
7
7
  family: forward-fold
8
8
  difficulty: 1
9
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]
10
+ tags: [ ashtanga, finishing, forward-fold, restorative ]
11
11
  breath: exhale
12
12
  drishti: nasagrai
13
13
  cues:
14
14
  - Let the hips settle back onto the heels
15
15
  - Soften the belly and breathe into the back ribs
16
- contact: [kneeL, kneeR, ankleL, ankleR, toeL, toeR, headTop, handTipL, handTipR]
16
+ contact: [ kneeL, kneeR, ankleL, ankleR, toeL, toeR, headTop, handTipL, handTipR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
19
  root:
21
- rotation: -10
20
+ pitch: 100
22
21
  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
22
+ pelvis: { azimuth: 0, elevation: -10 }
23
+ spine: { azimuth: 0, elevation: -25 }
24
+ neck: { azimuth: 0, elevation: -25 }
25
+ head: { azimuth: 0, elevation: -25 }
26
+ upperArmL: { azimuth: 0, elevation: -13 }
27
+ upperArmR: { azimuth: 0, elevation: -13 }
28
+ forearmL: { azimuth: 0, elevation: -13 }
29
+ forearmR: { azimuth: 0, elevation: -13 }
30
+ handL: { azimuth: 0, elevation: -13 }
31
+ handR: { azimuth: 0, elevation: -13 }
32
+ thighL: { azimuth: 0, elevation: -40 }
33
+ thighR: { azimuth: 0, elevation: -40 }
34
+ shinL: { azimuth: 180, elevation: 0 }
35
+ shinR: { azimuth: 180, elevation: 0 }
36
+ footL: { azimuth: 180, elevation: 0 }
37
+ footR: { azimuth: 180, elevation: 0 }
39
38
  props:
40
39
  - type: mat
41
40
  muscles:
42
- engaged: [rectusAbdominis]
43
- stretched: [erectorSpinae, latissimus, gluteus, quadriceps, tibialisAnterior]
41
+ engaged: [ rectusAbdominis ]
42
+ stretched: [ erectorSpinae, latissimus, gluteus, quadriceps, tibialisAnterior ]
43
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: chaturanga-dandasana
3
3
  name: Four-Limbed Staff Pose
4
4
  sanskrit: Caturaṅga Daṇḍāsana
@@ -7,35 +7,35 @@ discipline: yoga
7
7
  family: arm-support
8
8
  difficulty: 3
9
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]
10
+ tags: [ ashtanga, surya-namaskara-a, arm-support, core ]
11
11
  breath: exhale
12
12
  drishti: nasagrai
13
13
  cues:
14
14
  - Elbows stack over the wrists, hugged to the ribs
15
15
  - One straight line from heels to crown
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: 4
20
+ pitch: 86
22
21
  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
22
+ spine: { azimuth: 0, elevation: 4 }
23
+ neck: { azimuth: 0, elevation: 10 }
24
+ head: { azimuth: 0, elevation: 12 }
25
+ thighL: { azimuth: 180, elevation: -3 }
26
+ thighR: { azimuth: 180, elevation: -3 }
27
+ shinL: { azimuth: 180, elevation: -3 }
28
+ shinR: { azimuth: 180, elevation: -3 }
29
+ footL: { azimuth: 180, elevation: -62 }
30
+ footR: { azimuth: 180, elevation: -62 }
31
+ upperArmL: { azimuth: 180, elevation: 4 }
32
+ upperArmR: { azimuth: 180, elevation: 4 }
33
+ forearmL: { azimuth: 0, elevation: -88 }
34
+ forearmR: { azimuth: 0, elevation: -88 }
35
+ handL: { azimuth: 0, elevation: 0 }
36
+ handR: { azimuth: 0, elevation: 0 }
38
37
  props:
39
38
  - type: mat
40
39
  muscles:
41
- engaged: [triceps, pectoralis, rectusAbdominis, serratus, quadriceps]
40
+ engaged: [ triceps, pectoralis, rectusAbdominis, serratus, quadriceps ]
41
+ camera: side
@@ -1,4 +1,4 @@
1
- asanakit: 1
1
+ asanakit: 2
2
2
  id: dandasana
3
3
  name: Staff Pose
4
4
  sanskrit: Daṇḍāsana
@@ -7,36 +7,34 @@ discipline: yoga
7
7
  family: seated
8
8
  difficulty: 1
9
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]
10
+ tags: [ ashtanga, seated, foundation, primary-series ]
11
11
  breath: free
12
12
  drishti: nasagrai
13
13
  cues:
14
14
  - Press the hands down and lift the chest out of the waist
15
15
  - Flex the feet and press the thighs into the floor
16
- contact: [hipCenter, ankleL, ankleR, handTipL, handTipR]
16
+ contact: [ hipCenter, ankleL, ankleR, handTipL, handTipR ]
17
17
  figure:
18
- view: side
19
18
  grounded: true
20
- root:
21
- rotation: 90
22
19
  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
20
+ thighL: { azimuth: 0, elevation: 0 }
21
+ thighR: { azimuth: 0, elevation: 0 }
22
+ shinL: { azimuth: 0, elevation: 0 }
23
+ shinR: { azimuth: 0, elevation: 0 }
24
+ footL: { azimuth: 0, elevation: 90 }
25
+ footR: { azimuth: 0, elevation: 90 }
26
+ spine: { azimuth: 0, elevation: 90 }
27
+ neck: { azimuth: 0, elevation: 90 }
28
+ head: { azimuth: 0, elevation: 90 }
29
+ upperArmL: { azimuth: 180, elevation: -63 }
30
+ upperArmR: { azimuth: 180, elevation: -63 }
31
+ forearmL: { azimuth: 0, elevation: -58 }
32
+ forearmR: { azimuth: 0, elevation: -58 }
33
+ handL: { azimuth: 0, elevation: 0 }
34
+ handR: { azimuth: 0, elevation: 0 }
38
35
  props:
39
36
  - type: mat
40
37
  muscles:
41
- engaged: [quadriceps, rectusAbdominis, erectorSpinae, triceps]
42
- stretched: [hamstrings, gastrocnemius, pectoralis]
38
+ engaged: [ quadriceps, rectusAbdominis, erectorSpinae, triceps ]
39
+ stretched: [ hamstrings, gastrocnemius, pectoralis ]
40
+ camera: side