@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.
- package/README.md +78 -46
- package/dist/anatomy/muscles.d.ts +10 -7
- package/dist/anatomy/muscles.d.ts.map +1 -1
- package/dist/anatomy/muscles.js +21 -17
- package/dist/anatomy/muscles.js.map +1 -1
- package/dist/anatomy/validate.d.ts.map +1 -1
- package/dist/anatomy/validate.js +16 -10
- package/dist/anatomy/validate.js.map +1 -1
- package/dist/cli/commands/export.d.ts.map +1 -1
- package/dist/cli/commands/export.js +24 -2
- package/dist/cli/commands/export.js.map +1 -1
- package/dist/cli/commands/info.d.ts.map +1 -1
- package/dist/cli/commands/info.js +3 -1
- package/dist/cli/commands/info.js.map +1 -1
- package/dist/cli/commands/render.d.ts.map +1 -1
- package/dist/cli/commands/render.js +12 -3
- package/dist/cli/commands/render.js.map +1 -1
- package/dist/cli/commands/view.d.ts +3 -0
- package/dist/cli/commands/view.d.ts.map +1 -0
- package/dist/cli/commands/view.js +40 -0
- package/dist/cli/commands/view.js.map +1 -0
- package/dist/cli/index.js +7 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/resolve.d.ts +6 -0
- package/dist/cli/resolve.d.ts.map +1 -1
- package/dist/cli/resolve.js +40 -0
- package/dist/cli/resolve.js.map +1 -1
- package/dist/core/camera.d.ts +56 -0
- package/dist/core/camera.d.ts.map +1 -0
- package/dist/core/camera.js +20 -0
- package/dist/core/camera.js.map +1 -0
- package/dist/core/joints.d.ts +18 -0
- package/dist/core/joints.d.ts.map +1 -0
- package/dist/core/joints.js +27 -0
- package/dist/core/joints.js.map +1 -0
- package/dist/core/quat.d.ts +18 -0
- package/dist/core/quat.d.ts.map +1 -0
- package/dist/core/quat.js +25 -0
- package/dist/core/quat.js.map +1 -0
- package/dist/core/rig.d.ts +1 -6
- package/dist/core/rig.d.ts.map +1 -1
- package/dist/core/rig.js +45 -74
- package/dist/core/rig.js.map +1 -1
- package/dist/core/skeleton.d.ts +4 -13
- package/dist/core/skeleton.d.ts.map +1 -1
- package/dist/core/skeleton.js +39 -69
- package/dist/core/skeleton.js.map +1 -1
- package/dist/core/types.d.ts +62 -55
- package/dist/core/types.d.ts.map +1 -1
- package/dist/core/types.js.map +1 -1
- package/dist/core/vec3.d.ts +13 -0
- package/dist/core/vec3.d.ts.map +1 -0
- package/dist/core/vec3.js +26 -0
- package/dist/core/vec3.js.map +1 -0
- package/dist/export3d/gltf.d.ts +11 -0
- package/dist/export3d/gltf.d.ts.map +1 -0
- package/dist/export3d/gltf.js +28 -0
- package/dist/export3d/gltf.js.map +1 -0
- package/dist/export3d/index.d.ts +3 -0
- package/dist/export3d/index.d.ts.map +1 -0
- package/dist/export3d/index.js +3 -0
- package/dist/export3d/index.js.map +1 -0
- package/dist/export3d/shims.d.ts +7 -0
- package/dist/export3d/shims.d.ts.map +1 -0
- package/dist/export3d/shims.js +27 -0
- package/dist/export3d/shims.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/library/index.js +4 -4
- package/dist/library/index.js.map +1 -1
- package/dist/model/pose.d.ts +11 -5
- package/dist/model/pose.d.ts.map +1 -1
- package/dist/model/pose.js +30 -16
- package/dist/model/pose.js.map +1 -1
- package/dist/model/schema.d.ts +69 -28
- package/dist/model/schema.d.ts.map +1 -1
- package/dist/model/schema.js +57 -17
- package/dist/model/schema.js.map +1 -1
- package/dist/physics/index.d.ts +3 -0
- package/dist/physics/index.d.ts.map +1 -0
- package/dist/physics/index.js +3 -0
- package/dist/physics/index.js.map +1 -0
- package/dist/physics/rapier-types.d.ts +60 -0
- package/dist/physics/rapier-types.d.ts.map +1 -0
- package/dist/physics/rapier-types.js +12 -0
- package/dist/physics/rapier-types.js.map +1 -0
- package/dist/physics/settle.d.ts +3 -0
- package/dist/physics/settle.d.ts.map +1 -0
- package/dist/physics/settle.js +108 -0
- package/dist/physics/settle.js.map +1 -0
- package/dist/physics/world.d.ts +4 -0
- package/dist/physics/world.d.ts.map +1 -0
- package/dist/physics/world.js +18 -0
- package/dist/physics/world.js.map +1 -0
- package/dist/render/anatomy.js +1 -1
- package/dist/render/anatomy.js.map +1 -1
- package/dist/render/annotations.d.ts +3 -2
- package/dist/render/annotations.d.ts.map +1 -1
- package/dist/render/annotations.js.map +1 -1
- package/dist/render/camera.d.ts +43 -0
- package/dist/render/camera.d.ts.map +1 -0
- package/dist/render/camera.js +57 -0
- package/dist/render/camera.js.map +1 -0
- package/dist/render/context.d.ts +5 -3
- package/dist/render/context.d.ts.map +1 -1
- package/dist/render/figure.d.ts +4 -2
- package/dist/render/figure.d.ts.map +1 -1
- package/dist/render/figure.js +29 -43
- package/dist/render/figure.js.map +1 -1
- package/dist/render/index.d.ts +1 -0
- package/dist/render/index.d.ts.map +1 -1
- package/dist/render/index.js +1 -0
- package/dist/render/index.js.map +1 -1
- package/dist/render/props.d.ts +4 -3
- package/dist/render/props.d.ts.map +1 -1
- package/dist/render/props.js.map +1 -1
- package/dist/render/scene.d.ts +7 -1
- package/dist/render/scene.d.ts.map +1 -1
- package/dist/render/scene.js +8 -1
- package/dist/render/scene.js.map +1 -1
- package/dist/render/sheet.d.ts +3 -0
- package/dist/render/sheet.d.ts.map +1 -1
- package/dist/render/sheet.js +2 -0
- package/dist/render/sheet.js.map +1 -1
- package/dist/solve.d.ts +14 -0
- package/dist/solve.d.ts.map +1 -0
- package/dist/solve.js +17 -0
- package/dist/solve.js.map +1 -0
- package/dist/standards/keypoints.d.ts +2 -10
- package/dist/standards/keypoints.d.ts.map +1 -1
- package/dist/standards/keypoints.js +33 -14
- package/dist/standards/keypoints.js.map +1 -1
- package/dist/three/index.d.ts +2 -0
- package/dist/three/index.d.ts.map +1 -0
- package/dist/three/index.js +2 -0
- package/dist/three/index.js.map +1 -0
- package/dist/three/scene.d.ts +22 -0
- package/dist/three/scene.d.ts.map +1 -0
- package/dist/three/scene.js +90 -0
- package/dist/three/scene.js.map +1 -0
- package/dist/viewer/html.d.ts +16 -0
- package/dist/viewer/html.d.ts.map +1 -0
- package/dist/viewer/html.js +59 -0
- package/dist/viewer/html.js.map +1 -0
- package/dist/viewer/index.d.ts +2 -0
- package/dist/viewer/index.d.ts.map +1 -0
- package/dist/viewer/index.js +2 -0
- package/dist/viewer/index.js.map +1 -0
- package/dist/viewer/viewer.bundle.js +4119 -0
- package/docs/AUTHORING.md +119 -58
- package/package.json +20 -5
- package/poses/surf/bottom-turn.pose.yaml +24 -24
- package/poses/surf/cutback.pose.yaml +24 -24
- package/poses/surf/duck-dive.pose.yaml +23 -23
- package/poses/surf/noseride.pose.yaml +23 -25
- package/poses/surf/paddling.pose.yaml +24 -24
- package/poses/surf/pop-up.pose.yaml +24 -24
- package/poses/surf/takeoff.pose.yaml +24 -24
- package/poses/surf/tube-stance.pose.yaml +24 -24
- package/poses/yoga/ashtanga/adho-mukha-svanasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/ardha-uttanasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/baddha-konasana.pose.yaml +21 -23
- package/poses/yoga/ashtanga/balasana.pose.yaml +23 -23
- package/poses/yoga/ashtanga/chaturanga-dandasana.pose.yaml +21 -21
- package/poses/yoga/ashtanga/dandasana.pose.yaml +21 -23
- package/poses/yoga/ashtanga/halasana.pose.yaml +23 -23
- package/poses/yoga/ashtanga/janu-sirsasana-a.pose.yaml +22 -22
- package/poses/yoga/ashtanga/karnapidasana.pose.yaml +23 -23
- package/poses/yoga/ashtanga/marichyasana-a.pose.yaml +22 -22
- package/poses/yoga/ashtanga/marichyasana-c.pose.yaml +21 -23
- package/poses/yoga/ashtanga/matsyasana.pose.yaml +23 -23
- package/poses/yoga/ashtanga/navasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/padahastasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/padangusthasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/padmasana.pose.yaml +22 -24
- package/poses/yoga/ashtanga/parsvottanasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/paschimottanasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/prasarita-padottanasana-a.pose.yaml +26 -26
- package/poses/yoga/ashtanga/prasarita-padottanasana-c.pose.yaml +26 -26
- package/poses/yoga/ashtanga/primary.seq.yaml +2 -4
- package/poses/yoga/ashtanga/purvottanasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/salamba-sarvangasana.pose.yaml +23 -23
- package/poses/yoga/ashtanga/samasthiti.pose.yaml +10 -10
- package/poses/yoga/ashtanga/savasana.pose.yaml +21 -21
- package/poses/yoga/ashtanga/setu-bandhasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/sirsasana.pose.yaml +23 -23
- package/poses/yoga/ashtanga/supta-padangusthasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/upavistha-konasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/urdhva-dhanurasana.pose.yaml +23 -23
- package/poses/yoga/ashtanga/urdhva-hastasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/urdhva-mukha-svanasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/utkatasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/uttanasana.pose.yaml +22 -22
- package/poses/yoga/ashtanga/utthita-parsvakonasana.pose.yaml +24 -24
- package/poses/yoga/ashtanga/utthita-trikonasana.pose.yaml +24 -24
- package/poses/yoga/ashtanga/virabhadrasana-a.pose.yaml +22 -22
- package/poses/yoga/ashtanga/virabhadrasana-b.pose.yaml +21 -23
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: parsvottanasana
|
|
3
3
|
name: Intense Side Stretch
|
|
4
4
|
sanskrit: Pārśvottānāsana
|
|
@@ -7,36 +7,36 @@ discipline: yoga
|
|
|
7
7
|
family: standing
|
|
8
8
|
difficulty: 3
|
|
9
9
|
description: Feet staggered front and back, both legs straight, the hips square. The torso folds flat over the front leg while the hands stay in reverse prayer behind the back. Held five breaths.
|
|
10
|
-
tags: [ashtanga, standing, forward-fold, primary-series]
|
|
10
|
+
tags: [ ashtanga, standing, forward-fold, primary-series ]
|
|
11
11
|
breath: exhale
|
|
12
12
|
drishti: padhayoragrai
|
|
13
13
|
cues:
|
|
14
14
|
- Square the hips to the front foot before you fold
|
|
15
15
|
- Lengthen the chest along the front thigh, chin toward the shin
|
|
16
|
-
contact: [toeL, toeR]
|
|
16
|
+
contact: [ toeL, toeR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: 145
|
|
22
21
|
world:
|
|
23
|
-
thighL: -65
|
|
24
|
-
shinL: -65
|
|
25
|
-
footL: 0
|
|
26
|
-
thighR: -
|
|
27
|
-
shinR: -
|
|
28
|
-
footR: 0
|
|
29
|
-
spine: -55
|
|
30
|
-
neck: -70
|
|
31
|
-
head: -68
|
|
32
|
-
upperArmL:
|
|
33
|
-
forearmL: -
|
|
34
|
-
handL: -
|
|
35
|
-
upperArmR:
|
|
36
|
-
forearmR: -
|
|
37
|
-
handR: -
|
|
22
|
+
thighL: { azimuth: 0, elevation: -65 }
|
|
23
|
+
shinL: { azimuth: 0, elevation: -65 }
|
|
24
|
+
footL: { azimuth: 0, elevation: 0 }
|
|
25
|
+
thighR: { azimuth: 180, elevation: -65 }
|
|
26
|
+
shinR: { azimuth: 180, elevation: -65 }
|
|
27
|
+
footR: { azimuth: 0, elevation: 0 }
|
|
28
|
+
spine: { azimuth: 0, elevation: -55 }
|
|
29
|
+
neck: { azimuth: 0, elevation: -70 }
|
|
30
|
+
head: { azimuth: 0, elevation: -68 }
|
|
31
|
+
upperArmL: { azimuth: 180, elevation: 40 }
|
|
32
|
+
forearmL: { azimuth: 180, elevation: -20 }
|
|
33
|
+
handL: { azimuth: 180, elevation: -20 }
|
|
34
|
+
upperArmR: { azimuth: 180, elevation: 40 }
|
|
35
|
+
forearmR: { azimuth: 180, elevation: -20 }
|
|
36
|
+
handR: { azimuth: 180, elevation: -20 }
|
|
38
37
|
props:
|
|
39
38
|
- type: mat
|
|
40
39
|
muscles:
|
|
41
|
-
engaged: [quadriceps, rectusAbdominis, rotatorCuff]
|
|
42
|
-
stretched: [hamstrings, gastrocnemius, erectorSpinae, pectoralis]
|
|
40
|
+
engaged: [ quadriceps, rectusAbdominis, rotatorCuff ]
|
|
41
|
+
stretched: [ hamstrings, gastrocnemius, erectorSpinae, pectoralis ]
|
|
42
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: paschimottanasana
|
|
3
3
|
name: Seated Forward Fold
|
|
4
4
|
sanskrit: Paścimottānāsana
|
|
@@ -7,36 +7,36 @@ discipline: yoga
|
|
|
7
7
|
family: seated
|
|
8
8
|
difficulty: 2
|
|
9
9
|
description: From Staff Pose the torso hinges forward over straight legs, the hands catch the feet and the spine lengthens along the thighs. The whole back line of the body opens.
|
|
10
|
-
tags: [ashtanga, seated, forward-fold, primary-series]
|
|
10
|
+
tags: [ ashtanga, seated, forward-fold, primary-series ]
|
|
11
11
|
breath: exhale
|
|
12
12
|
drishti: padhayoragrai
|
|
13
13
|
cues:
|
|
14
14
|
- Hinge from the hip joints, lead with the chest not the chin
|
|
15
15
|
- Draw the belly in and lengthen the spine on every inhale
|
|
16
|
-
contact: [hipCenter, ankleL, ankleR]
|
|
16
|
+
contact: [ hipCenter, ankleL, ankleR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: 50
|
|
22
21
|
world:
|
|
23
|
-
thighL: 0
|
|
24
|
-
thighR: 0
|
|
25
|
-
shinL: 0
|
|
26
|
-
shinR: 0
|
|
27
|
-
footL: 90
|
|
28
|
-
footR: 90
|
|
29
|
-
spine: 28
|
|
30
|
-
neck: 10
|
|
31
|
-
head: -5
|
|
32
|
-
upperArmL: -45
|
|
33
|
-
upperArmR: -45
|
|
34
|
-
forearmL: 23
|
|
35
|
-
forearmR: 23
|
|
36
|
-
handL: -45
|
|
37
|
-
handR: -45
|
|
22
|
+
thighL: { azimuth: 0, elevation: 0 }
|
|
23
|
+
thighR: { azimuth: 0, elevation: 0 }
|
|
24
|
+
shinL: { azimuth: 0, elevation: 0 }
|
|
25
|
+
shinR: { azimuth: 0, elevation: 0 }
|
|
26
|
+
footL: { azimuth: 0, elevation: 90 }
|
|
27
|
+
footR: { azimuth: 0, elevation: 90 }
|
|
28
|
+
spine: { azimuth: 0, elevation: 28 }
|
|
29
|
+
neck: { azimuth: 0, elevation: 10 }
|
|
30
|
+
head: { azimuth: 0, elevation: -5 }
|
|
31
|
+
upperArmL: { azimuth: 0, elevation: -45 }
|
|
32
|
+
upperArmR: { azimuth: 0, elevation: -45 }
|
|
33
|
+
forearmL: { azimuth: 0, elevation: 23 }
|
|
34
|
+
forearmR: { azimuth: 0, elevation: 23 }
|
|
35
|
+
handL: { azimuth: 0, elevation: -45 }
|
|
36
|
+
handR: { azimuth: 0, elevation: -45 }
|
|
38
37
|
props:
|
|
39
38
|
- type: mat
|
|
40
39
|
muscles:
|
|
41
|
-
engaged: [quadriceps, rectusAbdominis, biceps]
|
|
42
|
-
stretched: [hamstrings, erectorSpinae, gastrocnemius, latissimus]
|
|
40
|
+
engaged: [ quadriceps, rectusAbdominis, biceps ]
|
|
41
|
+
stretched: [ hamstrings, erectorSpinae, gastrocnemius, latissimus ]
|
|
42
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: prasarita-padottanasana-a
|
|
3
3
|
name: Wide-Legged Forward Fold A
|
|
4
4
|
sanskrit: Prasārita Pādottānāsana A
|
|
@@ -7,40 +7,40 @@ discipline: yoga
|
|
|
7
7
|
family: standing
|
|
8
8
|
difficulty: 2
|
|
9
9
|
description: Feet wide and parallel, legs straight, the torso folds down between them. Hands press the floor in line with the feet, elbows bend back and the crown of the head reaches the mat. Held five breaths.
|
|
10
|
-
tags: [ashtanga, standing, forward-fold, primary-series]
|
|
10
|
+
tags: [ ashtanga, standing, forward-fold, primary-series ]
|
|
11
11
|
breath: exhale
|
|
12
12
|
drishti: nasagrai
|
|
13
13
|
cues:
|
|
14
14
|
- Straighten the legs and lift the kneecaps
|
|
15
15
|
- Bend the elbows straight back, crown to the floor
|
|
16
|
-
contact: [toeL, toeR, handTipL, handTipR, headTop]
|
|
16
|
+
contact: [ toeL, toeR, handTipL, handTipR, headTop ]
|
|
17
17
|
figure:
|
|
18
|
-
view: front
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
roll: -180
|
|
22
21
|
world:
|
|
23
|
-
hipL: 0
|
|
24
|
-
hipR:
|
|
25
|
-
thighL: -62
|
|
26
|
-
shinL: -62
|
|
27
|
-
footL: -30
|
|
28
|
-
thighR: -
|
|
29
|
-
shinR: -
|
|
30
|
-
footR: -
|
|
31
|
-
spine: -90
|
|
32
|
-
neck: -90
|
|
33
|
-
head: -90
|
|
34
|
-
clavicleL: 0
|
|
35
|
-
clavicleR:
|
|
36
|
-
upperArmL: -
|
|
37
|
-
forearmL: -10
|
|
38
|
-
handL: -8
|
|
39
|
-
upperArmR: -85
|
|
40
|
-
forearmR: -
|
|
41
|
-
handR: -
|
|
22
|
+
hipL: { azimuth: 90, elevation: 0 }
|
|
23
|
+
hipR: { azimuth: -90, elevation: 0 }
|
|
24
|
+
thighL: { azimuth: 90, elevation: -62 }
|
|
25
|
+
shinL: { azimuth: 90, elevation: -62 }
|
|
26
|
+
footL: { azimuth: 90, elevation: -30 }
|
|
27
|
+
thighR: { azimuth: -90, elevation: -62 }
|
|
28
|
+
shinR: { azimuth: -90, elevation: -62 }
|
|
29
|
+
footR: { azimuth: -90, elevation: -30 }
|
|
30
|
+
spine: { azimuth: 90, elevation: -90 }
|
|
31
|
+
neck: { azimuth: 90, elevation: -90 }
|
|
32
|
+
head: { azimuth: 90, elevation: -90 }
|
|
33
|
+
clavicleL: { azimuth: 90, elevation: 0 }
|
|
34
|
+
clavicleR: { azimuth: -90, elevation: 0 }
|
|
35
|
+
upperArmL: { azimuth: -90, elevation: -85 }
|
|
36
|
+
forearmL: { azimuth: 90, elevation: -10 }
|
|
37
|
+
handL: { azimuth: 90, elevation: -8 }
|
|
38
|
+
upperArmR: { azimuth: 90, elevation: -85 }
|
|
39
|
+
forearmR: { azimuth: -90, elevation: -10 }
|
|
40
|
+
handR: { azimuth: -90, elevation: -8 }
|
|
42
41
|
props:
|
|
43
42
|
- type: mat
|
|
44
43
|
muscles:
|
|
45
|
-
engaged: [quadriceps, rectusAbdominis, deltoid]
|
|
46
|
-
stretched: [hamstrings, adductors, erectorSpinae, gastrocnemius]
|
|
44
|
+
engaged: [ quadriceps, rectusAbdominis, deltoid ]
|
|
45
|
+
stretched: [ hamstrings, adductors, erectorSpinae, gastrocnemius ]
|
|
46
|
+
camera: front
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: prasarita-padottanasana-c
|
|
3
3
|
name: Wide-Legged Forward Fold C
|
|
4
4
|
sanskrit: Prasārita Pādottānāsana C
|
|
@@ -7,40 +7,40 @@ discipline: yoga
|
|
|
7
7
|
family: standing
|
|
8
8
|
difficulty: 3
|
|
9
9
|
description: Feet wide and parallel, legs straight, the torso folds down between them. The hands are clasped behind the back and the straight arms sweep up over the head toward the floor, opening the shoulders. Held five breaths.
|
|
10
|
-
tags: [ashtanga, standing, forward-fold, shoulder-opener, primary-series]
|
|
10
|
+
tags: [ ashtanga, standing, forward-fold, shoulder-opener, primary-series ]
|
|
11
11
|
breath: exhale
|
|
12
12
|
drishti: nasagrai
|
|
13
13
|
cues:
|
|
14
14
|
- Clasp the hands and straighten the elbows before you fold
|
|
15
15
|
- Let the arms fall over the head, shoulders away from the ears
|
|
16
|
-
contact: [toeL, toeR, headTop]
|
|
16
|
+
contact: [ toeL, toeR, headTop ]
|
|
17
17
|
figure:
|
|
18
|
-
view: front
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
roll: -180
|
|
22
21
|
world:
|
|
23
|
-
hipL: 0
|
|
24
|
-
hipR:
|
|
25
|
-
thighL: -62
|
|
26
|
-
shinL: -62
|
|
27
|
-
footL: -30
|
|
28
|
-
thighR: -
|
|
29
|
-
shinR: -
|
|
30
|
-
footR: -
|
|
31
|
-
spine: -90
|
|
32
|
-
neck: -90
|
|
33
|
-
head: -90
|
|
34
|
-
clavicleL: 0
|
|
35
|
-
clavicleR:
|
|
36
|
-
upperArmL:
|
|
37
|
-
forearmL:
|
|
38
|
-
handL:
|
|
39
|
-
upperArmR: 75
|
|
40
|
-
forearmR: 75
|
|
41
|
-
handR: 75
|
|
22
|
+
hipL: { azimuth: 90, elevation: 0 }
|
|
23
|
+
hipR: { azimuth: -90, elevation: 0 }
|
|
24
|
+
thighL: { azimuth: 90, elevation: -62 }
|
|
25
|
+
shinL: { azimuth: 90, elevation: -62 }
|
|
26
|
+
footL: { azimuth: 90, elevation: -30 }
|
|
27
|
+
thighR: { azimuth: -90, elevation: -62 }
|
|
28
|
+
shinR: { azimuth: -90, elevation: -62 }
|
|
29
|
+
footR: { azimuth: -90, elevation: -30 }
|
|
30
|
+
spine: { azimuth: 90, elevation: -90 }
|
|
31
|
+
neck: { azimuth: 90, elevation: -90 }
|
|
32
|
+
head: { azimuth: 90, elevation: -90 }
|
|
33
|
+
clavicleL: { azimuth: 90, elevation: 0 }
|
|
34
|
+
clavicleR: { azimuth: -90, elevation: 0 }
|
|
35
|
+
upperArmL: { azimuth: -90, elevation: 75 }
|
|
36
|
+
forearmL: { azimuth: -90, elevation: 75 }
|
|
37
|
+
handL: { azimuth: -90, elevation: 75 }
|
|
38
|
+
upperArmR: { azimuth: 90, elevation: 75 }
|
|
39
|
+
forearmR: { azimuth: 90, elevation: 75 }
|
|
40
|
+
handR: { azimuth: 90, elevation: 75 }
|
|
42
41
|
props:
|
|
43
42
|
- type: mat
|
|
44
43
|
muscles:
|
|
45
|
-
engaged: [quadriceps, deltoid, trapezius]
|
|
46
|
-
stretched: [hamstrings, adductors, pectoralis, deltoid]
|
|
44
|
+
engaged: [ quadriceps, deltoid, trapezius ]
|
|
45
|
+
stretched: [ hamstrings, adductors, pectoralis, deltoid ]
|
|
46
|
+
camera: front
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: ashtanga-primary
|
|
3
3
|
name: Ashtanga Primary Series
|
|
4
4
|
tradition: Ashtanga Vinyasa Yoga
|
|
5
5
|
description: >-
|
|
6
|
-
Yoga Chikitsa, the first series of Ashtanga Vinyasa Yoga: the opening sun salutations,
|
|
7
|
-
the standing sequence, the seated sequence and the finishing sequence. Asymmetric
|
|
8
|
-
postures are marked "both" and render twice, once per side.
|
|
6
|
+
Yoga Chikitsa, the first series of Ashtanga Vinyasa Yoga: the opening sun salutations, the standing sequence, the seated sequence and the finishing sequence. Asymmetric postures are marked "both" and render twice, once per side.
|
|
9
7
|
|
|
10
8
|
sections:
|
|
11
9
|
- name: Surya Namaskara A
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: purvottanasana
|
|
3
3
|
name: Upward Plank
|
|
4
4
|
sanskrit: Pūrvottānāsana
|
|
@@ -7,36 +7,36 @@ discipline: yoga
|
|
|
7
7
|
family: backbend
|
|
8
8
|
difficulty: 3
|
|
9
9
|
description: The counterpose to the seated forward fold. Hands press the floor behind the hips, the body lifts into one straight line from shoulders to feet, the soles press down and the head drops back.
|
|
10
|
-
tags: [ashtanga, backbend, counterpose, primary-series]
|
|
10
|
+
tags: [ ashtanga, backbend, counterpose, primary-series ]
|
|
11
11
|
breath: inhale
|
|
12
12
|
drishti: broomadhya
|
|
13
13
|
cues:
|
|
14
14
|
- Press the hands down and lift the hips until the body is one line
|
|
15
15
|
- Push the soles into the floor and open the chest
|
|
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
|
-
|
|
20
|
+
pitch: -68
|
|
22
21
|
world:
|
|
23
|
-
thighL: -22
|
|
24
|
-
thighR: -22
|
|
25
|
-
shinL: -22
|
|
26
|
-
shinR: -22
|
|
27
|
-
footL: -18
|
|
28
|
-
footR: -18
|
|
29
|
-
spine:
|
|
30
|
-
neck:
|
|
31
|
-
head:
|
|
32
|
-
upperArmL: -90
|
|
33
|
-
upperArmR: -90
|
|
34
|
-
forearmL: -90
|
|
35
|
-
forearmR: -90
|
|
36
|
-
handL: 0
|
|
37
|
-
handR: 0
|
|
22
|
+
thighL: { azimuth: 0, elevation: -22 }
|
|
23
|
+
thighR: { azimuth: 0, elevation: -22 }
|
|
24
|
+
shinL: { azimuth: 0, elevation: -22 }
|
|
25
|
+
shinR: { azimuth: 0, elevation: -22 }
|
|
26
|
+
footL: { azimuth: 0, elevation: -18 }
|
|
27
|
+
footR: { azimuth: 0, elevation: -18 }
|
|
28
|
+
spine: { azimuth: 180, elevation: 22 }
|
|
29
|
+
neck: { azimuth: 180, elevation: 22 }
|
|
30
|
+
head: { azimuth: 180, elevation: -25 }
|
|
31
|
+
upperArmL: { azimuth: 0, elevation: -90 }
|
|
32
|
+
upperArmR: { azimuth: 0, elevation: -90 }
|
|
33
|
+
forearmL: { azimuth: 0, elevation: -90 }
|
|
34
|
+
forearmR: { azimuth: 0, elevation: -90 }
|
|
35
|
+
handL: { azimuth: 0, elevation: 0 }
|
|
36
|
+
handR: { azimuth: 0, elevation: 0 }
|
|
38
37
|
props:
|
|
39
38
|
- type: mat
|
|
40
39
|
muscles:
|
|
41
|
-
engaged: [gluteus, hamstrings, erectorSpinae, triceps, deltoid]
|
|
42
|
-
stretched: [pectoralis, rectusAbdominis, hipFlexors]
|
|
40
|
+
engaged: [ gluteus, hamstrings, erectorSpinae, triceps, deltoid ]
|
|
41
|
+
stretched: [ pectoralis, rectusAbdominis, hipFlexors ]
|
|
42
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: salamba-sarvangasana
|
|
3
3
|
name: Shoulderstand
|
|
4
4
|
sanskrit: Sālamba Sarvāṅgāsana
|
|
@@ -7,37 +7,37 @@ discipline: yoga
|
|
|
7
7
|
family: inversion
|
|
8
8
|
difficulty: 3
|
|
9
9
|
description: An inversion. The shoulders and upper arms rest on the floor, the body stacks vertically upside down, the legs point straight up and the hands support the mid back.
|
|
10
|
-
tags: [ashtanga, finishing, inversion]
|
|
10
|
+
tags: [ ashtanga, finishing, inversion ]
|
|
11
11
|
breath: free
|
|
12
12
|
drishti: nasagrai
|
|
13
13
|
cues:
|
|
14
14
|
- Stack hips over shoulders, lift through the balls of the feet
|
|
15
15
|
- Keep the weight in the shoulders, never on the neck
|
|
16
|
-
contact: [shoulderL, shoulderR, elbowL, elbowR, headTop]
|
|
16
|
+
contact: [ shoulderL, shoulderR, elbowL, elbowR, headTop ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
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:
|
|
30
|
-
forearmR:
|
|
31
|
-
handL:
|
|
32
|
-
handR:
|
|
33
|
-
thighL: 90
|
|
34
|
-
thighR: 90
|
|
35
|
-
shinL: 90
|
|
36
|
-
shinR: 90
|
|
37
|
-
footL:
|
|
38
|
-
footR:
|
|
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: 180, elevation: 46 }
|
|
29
|
+
forearmR: { azimuth: 180, elevation: 46 }
|
|
30
|
+
handL: { azimuth: 180, elevation: 46 }
|
|
31
|
+
handR: { azimuth: 180, elevation: 46 }
|
|
32
|
+
thighL: { azimuth: 0, elevation: 90 }
|
|
33
|
+
thighR: { azimuth: 0, elevation: 90 }
|
|
34
|
+
shinL: { azimuth: 0, elevation: 90 }
|
|
35
|
+
shinR: { azimuth: 0, elevation: 90 }
|
|
36
|
+
footL: { azimuth: 180, elevation: 85 }
|
|
37
|
+
footR: { azimuth: 180, elevation: 85 }
|
|
39
38
|
props:
|
|
40
39
|
- type: mat
|
|
41
40
|
muscles:
|
|
42
|
-
engaged: [rectusAbdominis, erectorSpinae, gluteus, quadriceps, triceps]
|
|
43
|
-
stretched: [trapezius, hamstrings]
|
|
41
|
+
engaged: [ rectusAbdominis, erectorSpinae, gluteus, quadriceps, triceps ]
|
|
42
|
+
stretched: [ trapezius, hamstrings ]
|
|
43
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: samasthiti
|
|
3
3
|
name: Samasthiti
|
|
4
4
|
sanskrit: Samasthitiḥ
|
|
@@ -7,23 +7,23 @@ discipline: yoga
|
|
|
7
7
|
family: standing
|
|
8
8
|
difficulty: 1
|
|
9
9
|
description: The starting and ending posture of every vinyasa. Feet together, weight even, spine long.
|
|
10
|
-
tags: [ashtanga, surya-namaskara-a, surya-namaskara-b, standing]
|
|
10
|
+
tags: [ ashtanga, surya-namaskara-a, surya-namaskara-b, standing ]
|
|
11
11
|
breath: free
|
|
12
12
|
drishti: nasagrai
|
|
13
13
|
cues:
|
|
14
14
|
- Feet together, weight even across both soles
|
|
15
15
|
- Crown lifts, shoulders soften down
|
|
16
|
-
contact: [toeL, toeR]
|
|
16
|
+
contact: [ toeL, toeR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
world:
|
|
21
|
-
upperArmL: -88
|
|
22
|
-
upperArmR: -88
|
|
23
|
-
forearmL: -88
|
|
24
|
-
forearmR: -88
|
|
25
|
-
handL: -80
|
|
20
|
+
upperArmL: { azimuth: 0, elevation: -88 }
|
|
21
|
+
upperArmR: { azimuth: 0, elevation: -88 }
|
|
22
|
+
forearmL: { azimuth: 0, elevation: -88 }
|
|
23
|
+
forearmR: { azimuth: 0, elevation: -88 }
|
|
24
|
+
handL: { azimuth: 0, elevation: -80 }
|
|
26
25
|
props:
|
|
27
26
|
- type: mat
|
|
28
27
|
muscles:
|
|
29
|
-
engaged: [quadriceps, erectorSpinae]
|
|
28
|
+
engaged: [ quadriceps, erectorSpinae ]
|
|
29
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: savasana
|
|
3
3
|
name: Corpse Pose
|
|
4
4
|
sanskrit: Śavāsana
|
|
@@ -7,37 +7,37 @@ discipline: yoga
|
|
|
7
7
|
family: supine
|
|
8
8
|
difficulty: 1
|
|
9
9
|
description: Lying flat on the back, the whole body rests along the floor. Legs are long and slightly apart, arms relax beside the body, palms soft, the breath is left alone.
|
|
10
|
-
tags: [ashtanga, finishing, supine, restorative]
|
|
10
|
+
tags: [ ashtanga, finishing, supine, restorative ]
|
|
11
11
|
breath: free
|
|
12
12
|
drishti: nasagrai
|
|
13
13
|
cues:
|
|
14
14
|
- Let the whole weight of the body drop into the floor
|
|
15
15
|
- Release the jaw, the eyes and the breath
|
|
16
|
-
contact: [headTop, shoulderL, shoulderR, hipCenter, handTipL, handTipR, kneeL, kneeR, ankleL, ankleR]
|
|
16
|
+
contact: [ headTop, shoulderL, shoulderR, hipCenter, handTipL, handTipR, kneeL, kneeR, ankleL, ankleR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: -90
|
|
22
21
|
world:
|
|
23
|
-
pelvis: 180
|
|
24
|
-
spine: 180
|
|
25
|
-
neck: 180
|
|
26
|
-
head: 180
|
|
27
|
-
upperArmL: 0
|
|
28
|
-
upperArmR: 0
|
|
29
|
-
forearmL: 0
|
|
30
|
-
forearmR: 0
|
|
31
|
-
handL: 0
|
|
32
|
-
handR: 0
|
|
33
|
-
thighL: 0
|
|
34
|
-
thighR: 0
|
|
35
|
-
shinL: 0
|
|
36
|
-
shinR: 0
|
|
37
|
-
footL: 40
|
|
38
|
-
footR: 40
|
|
22
|
+
pelvis: { azimuth: 180, elevation: 0 }
|
|
23
|
+
spine: { azimuth: 180, elevation: 0 }
|
|
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: 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: 40 }
|
|
37
|
+
footR: { azimuth: 0, elevation: 40 }
|
|
39
38
|
props:
|
|
40
39
|
- type: mat
|
|
41
40
|
muscles:
|
|
42
41
|
engaged: []
|
|
43
42
|
stretched: []
|
|
43
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: setu-bandhasana
|
|
3
3
|
name: Bridge Pose
|
|
4
4
|
sanskrit: Setu Bandhāsana
|
|
@@ -7,36 +7,36 @@ discipline: yoga
|
|
|
7
7
|
family: backbend
|
|
8
8
|
difficulty: 3
|
|
9
9
|
description: Lying on the back with the knees bent and the feet planted, the hips and chest lift while the crown of the head stays on the floor. The final posture of the primary series.
|
|
10
|
-
tags: [ashtanga, backbend, primary-series, neck]
|
|
10
|
+
tags: [ ashtanga, backbend, primary-series, neck ]
|
|
11
11
|
breath: inhale
|
|
12
12
|
drishti: broomadhya
|
|
13
13
|
cues:
|
|
14
14
|
- Press the feet down and lift the hips before the chest
|
|
15
15
|
- Keep weight in the feet, never crank the neck
|
|
16
|
-
contact: [headTop, toeL, toeR, handTipL, handTipR]
|
|
16
|
+
contact: [ headTop, toeL, toeR, handTipL, handTipR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: -90
|
|
22
21
|
world:
|
|
23
|
-
thighL: -10
|
|
24
|
-
thighR: -10
|
|
25
|
-
shinL: -
|
|
26
|
-
shinR: -
|
|
27
|
-
footL: -18
|
|
28
|
-
footR: -18
|
|
29
|
-
spine:
|
|
30
|
-
neck:
|
|
31
|
-
head:
|
|
32
|
-
upperArmL: -83
|
|
33
|
-
upperArmR: -83
|
|
34
|
-
forearmL: -4
|
|
35
|
-
forearmR: -4
|
|
36
|
-
handL: 0
|
|
37
|
-
handR: 0
|
|
22
|
+
thighL: { azimuth: 0, elevation: -10 }
|
|
23
|
+
thighR: { azimuth: 0, elevation: -10 }
|
|
24
|
+
shinL: { azimuth: 180, elevation: -66 }
|
|
25
|
+
shinR: { azimuth: 180, elevation: -66 }
|
|
26
|
+
footL: { azimuth: 0, elevation: -18 }
|
|
27
|
+
footR: { azimuth: 0, elevation: -18 }
|
|
28
|
+
spine: { azimuth: 180, elevation: -45 }
|
|
29
|
+
neck: { azimuth: 180, elevation: -60 }
|
|
30
|
+
head: { azimuth: 180, elevation: -70 }
|
|
31
|
+
upperArmL: { azimuth: 0, elevation: -83 }
|
|
32
|
+
upperArmR: { azimuth: 0, elevation: -83 }
|
|
33
|
+
forearmL: { azimuth: 0, elevation: -4 }
|
|
34
|
+
forearmR: { azimuth: 0, elevation: -4 }
|
|
35
|
+
handL: { azimuth: 0, elevation: 0 }
|
|
36
|
+
handR: { azimuth: 0, elevation: 0 }
|
|
38
37
|
props:
|
|
39
38
|
- type: mat
|
|
40
39
|
muscles:
|
|
41
|
-
engaged: [gluteus, hamstrings, erectorSpinae, quadriceps]
|
|
42
|
-
stretched: [rectusAbdominis, hipFlexors, pectoralis]
|
|
40
|
+
engaged: [ gluteus, hamstrings, erectorSpinae, quadriceps ]
|
|
41
|
+
stretched: [ rectusAbdominis, hipFlexors, pectoralis ]
|
|
42
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: sirsasana
|
|
3
3
|
name: Headstand
|
|
4
4
|
sanskrit: Śīrṣāsana
|
|
@@ -7,37 +7,37 @@ discipline: yoga
|
|
|
7
7
|
family: inversion
|
|
8
8
|
difficulty: 4
|
|
9
9
|
description: An inversion. The crown of the head and the forearms rest on the floor, the body stacks upside down in one vertical line and the legs reach straight up.
|
|
10
|
-
tags: [ashtanga, finishing, inversion, balance]
|
|
10
|
+
tags: [ ashtanga, finishing, inversion, balance ]
|
|
11
11
|
breath: free
|
|
12
12
|
drishti: nasagrai
|
|
13
13
|
cues:
|
|
14
14
|
- Press the forearms down and lift the shoulders away from the ears
|
|
15
15
|
- Stack ankles over hips over shoulders, ribs in
|
|
16
|
-
contact: [headTop, elbowL, elbowR, handTipL, handTipR]
|
|
16
|
+
contact: [ headTop, elbowL, elbowR, handTipL, handTipR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: 180
|
|
22
21
|
world:
|
|
23
|
-
pelvis: -90
|
|
24
|
-
spine: -90
|
|
25
|
-
neck: -90
|
|
26
|
-
head: -90
|
|
27
|
-
upperArmL: -
|
|
28
|
-
upperArmR: -
|
|
29
|
-
forearmL: 0
|
|
30
|
-
forearmR: 0
|
|
31
|
-
handL: 0
|
|
32
|
-
handR: 0
|
|
33
|
-
thighL: 90
|
|
34
|
-
thighR: 90
|
|
35
|
-
shinL: 90
|
|
36
|
-
shinR: 90
|
|
37
|
-
footL:
|
|
38
|
-
footR:
|
|
22
|
+
pelvis: { azimuth: 0, elevation: -90 }
|
|
23
|
+
spine: { azimuth: 0, elevation: -90 }
|
|
24
|
+
neck: { azimuth: 0, elevation: -90 }
|
|
25
|
+
head: { azimuth: 0, elevation: -90 }
|
|
26
|
+
upperArmL: { azimuth: 180, elevation: -80 }
|
|
27
|
+
upperArmR: { azimuth: 180, elevation: -80 }
|
|
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: 90 }
|
|
33
|
+
thighR: { azimuth: 0, elevation: 90 }
|
|
34
|
+
shinL: { azimuth: 0, elevation: 90 }
|
|
35
|
+
shinR: { azimuth: 0, elevation: 90 }
|
|
36
|
+
footL: { azimuth: 180, elevation: 85 }
|
|
37
|
+
footR: { azimuth: 180, elevation: 85 }
|
|
39
38
|
props:
|
|
40
39
|
- type: mat
|
|
41
40
|
muscles:
|
|
42
|
-
engaged: [deltoid, trapezius, rectusAbdominis, erectorSpinae, quadriceps, adductors]
|
|
43
|
-
stretched: [hamstrings]
|
|
41
|
+
engaged: [ deltoid, trapezius, rectusAbdominis, erectorSpinae, quadriceps, adductors ]
|
|
42
|
+
stretched: [ hamstrings ]
|
|
43
|
+
camera: side
|