@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.
- package/README.md +84 -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 +22 -4
- 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 +88 -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 +32 -0
- package/dist/viewer/html.d.ts.map +1 -0
- package/dist/viewer/html.js +163 -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 -6
- 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: supta-padangusthasana
|
|
3
3
|
name: Reclining Big Toe Pose
|
|
4
4
|
sanskrit: Supta Pādāṅguṣṭhāsana
|
|
@@ -7,36 +7,36 @@ discipline: yoga
|
|
|
7
7
|
family: supine
|
|
8
8
|
difficulty: 2
|
|
9
9
|
description: Lying flat on the back, one leg stays long on the floor while the other lifts straight up. The hand catches the big toe and draws the leg in toward the torso; the free arm rests on the mat.
|
|
10
|
-
tags: [ashtanga, primary-series, supine, forward-fold]
|
|
10
|
+
tags: [ ashtanga, primary-series, supine, forward-fold ]
|
|
11
11
|
breath: exhale
|
|
12
12
|
drishti: padhayoragrai
|
|
13
13
|
cues:
|
|
14
14
|
- Press the floor leg down as the lifted leg comes in
|
|
15
15
|
- Keep both hips level, do not let the bottom hip roll up
|
|
16
|
-
contact: [hipCenter, hipJointL, hipJointR, kneeL, ankleL, handTipL]
|
|
16
|
+
contact: [ hipCenter, hipJointL, hipJointR, kneeL, ankleL, handTipL ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: 90
|
|
22
21
|
world:
|
|
23
|
-
thighL: 180
|
|
24
|
-
shinL: 180
|
|
25
|
-
footL:
|
|
26
|
-
thighR: 60
|
|
27
|
-
shinR: 60
|
|
28
|
-
footR: -5
|
|
29
|
-
spine: 20
|
|
30
|
-
neck: 0
|
|
31
|
-
head: -5
|
|
32
|
-
upperArmL:
|
|
33
|
-
forearmL:
|
|
34
|
-
handL:
|
|
35
|
-
upperArmR: 78
|
|
36
|
-
forearmR: 78
|
|
37
|
-
handR: 78
|
|
22
|
+
thighL: { azimuth: 180, elevation: 0 }
|
|
23
|
+
shinL: { azimuth: 180, elevation: 0 }
|
|
24
|
+
footL: { azimuth: 180, elevation: 85 }
|
|
25
|
+
thighR: { azimuth: 0, elevation: 60 }
|
|
26
|
+
shinR: { azimuth: 0, elevation: 60 }
|
|
27
|
+
footR: { azimuth: 0, elevation: -5 }
|
|
28
|
+
spine: { azimuth: 0, elevation: 20 }
|
|
29
|
+
neck: { azimuth: 0, elevation: 0 }
|
|
30
|
+
head: { azimuth: 0, elevation: -5 }
|
|
31
|
+
upperArmL: { azimuth: 180, elevation: -6 }
|
|
32
|
+
forearmL: { azimuth: 180, elevation: -10 }
|
|
33
|
+
handL: { azimuth: 180, elevation: -5 }
|
|
34
|
+
upperArmR: { azimuth: 0, elevation: 78 }
|
|
35
|
+
forearmR: { azimuth: 0, elevation: 78 }
|
|
36
|
+
handR: { azimuth: 0, elevation: 78 }
|
|
38
37
|
props:
|
|
39
38
|
- type: mat
|
|
40
39
|
muscles:
|
|
41
|
-
engaged: [quadriceps, hipFlexors, biceps]
|
|
42
|
-
stretched: [hamstrings, gastrocnemius, gluteus]
|
|
40
|
+
engaged: [ quadriceps, hipFlexors, biceps ]
|
|
41
|
+
stretched: [ hamstrings, gastrocnemius, gluteus ]
|
|
42
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: upavistha-konasana
|
|
3
3
|
name: Wide-Angle Seated Forward Fold
|
|
4
4
|
sanskrit: Upaviṣṭha Koṇāsana
|
|
@@ -7,36 +7,36 @@ discipline: yoga
|
|
|
7
7
|
family: seated
|
|
8
8
|
difficulty: 3
|
|
9
9
|
description: Seated with the legs straight and spread wide on the floor. The torso hinges forward from the hips, the hands take hold of the outer edges of the feet and the chest travels toward the mat.
|
|
10
|
-
tags: [ashtanga, primary-series, seated, forward-fold, hip-opener]
|
|
10
|
+
tags: [ ashtanga, primary-series, seated, forward-fold, hip-opener ]
|
|
11
11
|
breath: exhale
|
|
12
12
|
drishti: nasagrai
|
|
13
13
|
cues:
|
|
14
14
|
- Roll the thighs open so the kneecaps point at the ceiling
|
|
15
15
|
- Walk the hands out and lead with the chest, not the chin
|
|
16
|
-
contact: [hipCenter, hipJointL, hipJointR, kneeR, ankleR]
|
|
16
|
+
contact: [ hipCenter, hipJointL, hipJointR, kneeR, ankleR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: 58
|
|
22
21
|
world:
|
|
23
|
-
thighL: 8
|
|
24
|
-
shinL: 8
|
|
25
|
-
footL: 82
|
|
26
|
-
thighR: 0
|
|
27
|
-
shinR: 0
|
|
28
|
-
footR: 75
|
|
29
|
-
spine: 40
|
|
30
|
-
neck: 20
|
|
31
|
-
head: 5
|
|
32
|
-
upperArmL: -30
|
|
33
|
-
forearmL: -20
|
|
34
|
-
handL: -25
|
|
35
|
-
upperArmR: -30
|
|
36
|
-
forearmR: -20
|
|
37
|
-
handR: -25
|
|
22
|
+
thighL: { azimuth: 0, elevation: 8 }
|
|
23
|
+
shinL: { azimuth: 0, elevation: 8 }
|
|
24
|
+
footL: { azimuth: 0, elevation: 82 }
|
|
25
|
+
thighR: { azimuth: 0, elevation: 0 }
|
|
26
|
+
shinR: { azimuth: 0, elevation: 0 }
|
|
27
|
+
footR: { azimuth: 0, elevation: 75 }
|
|
28
|
+
spine: { azimuth: 0, elevation: 40 }
|
|
29
|
+
neck: { azimuth: 0, elevation: 20 }
|
|
30
|
+
head: { azimuth: 0, elevation: 5 }
|
|
31
|
+
upperArmL: { azimuth: 0, elevation: -30 }
|
|
32
|
+
forearmL: { azimuth: 0, elevation: -20 }
|
|
33
|
+
handL: { azimuth: 0, elevation: -25 }
|
|
34
|
+
upperArmR: { azimuth: 0, elevation: -30 }
|
|
35
|
+
forearmR: { azimuth: 0, elevation: -20 }
|
|
36
|
+
handR: { azimuth: 0, elevation: -25 }
|
|
38
37
|
props:
|
|
39
38
|
- type: mat
|
|
40
39
|
muscles:
|
|
41
|
-
engaged: [quadriceps, rectusAbdominis]
|
|
42
|
-
stretched: [hamstrings, adductors, erectorSpinae]
|
|
40
|
+
engaged: [ quadriceps, rectusAbdominis ]
|
|
41
|
+
stretched: [ hamstrings, adductors, erectorSpinae ]
|
|
42
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: urdhva-dhanurasana
|
|
3
3
|
name: Upward Bow
|
|
4
4
|
sanskrit: Ūrdhva Dhanurāsana
|
|
@@ -7,37 +7,37 @@ discipline: yoga
|
|
|
7
7
|
family: backbend
|
|
8
8
|
difficulty: 4
|
|
9
9
|
description: A deep backbend. Hands and feet press the floor, the hips and chest lift into a high arc, the head hangs back between the arms.
|
|
10
|
-
tags: [ashtanga, finishing, backbend]
|
|
10
|
+
tags: [ ashtanga, finishing, backbend ]
|
|
11
11
|
breath: inhale
|
|
12
12
|
drishti: nasagrai
|
|
13
13
|
cues:
|
|
14
14
|
- Press evenly through hands and feet to lift the chest
|
|
15
15
|
- Keep the knees tracking over the feet, do not splay
|
|
16
|
-
contact: [toeL, toeR, handTipL, handTipR]
|
|
16
|
+
contact: [ toeL, toeR, handTipL, handTipR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: -105
|
|
22
21
|
world:
|
|
23
|
-
pelvis:
|
|
24
|
-
spine:
|
|
25
|
-
neck:
|
|
26
|
-
head:
|
|
27
|
-
upperArmL: -88
|
|
28
|
-
upperArmR: -88
|
|
29
|
-
forearmL: -88
|
|
30
|
-
forearmR: -88
|
|
31
|
-
handL: 0
|
|
32
|
-
handR: 0
|
|
33
|
-
thighL: -50
|
|
34
|
-
thighR: -50
|
|
35
|
-
shinL: -
|
|
36
|
-
shinR: -
|
|
37
|
-
footL: -15
|
|
38
|
-
footR: -15
|
|
22
|
+
pelvis: { azimuth: 180, elevation: -15 }
|
|
23
|
+
spine: { azimuth: 180, elevation: -30 }
|
|
24
|
+
neck: { azimuth: 180, elevation: -55 }
|
|
25
|
+
head: { azimuth: 180, elevation: -70 }
|
|
26
|
+
upperArmL: { azimuth: 0, elevation: -88 }
|
|
27
|
+
upperArmR: { azimuth: 0, elevation: -88 }
|
|
28
|
+
forearmL: { azimuth: 0, elevation: -88 }
|
|
29
|
+
forearmR: { azimuth: 0, elevation: -88 }
|
|
30
|
+
handL: { azimuth: 0, elevation: 0 }
|
|
31
|
+
handR: { azimuth: 0, elevation: 0 }
|
|
32
|
+
thighL: { azimuth: 0, elevation: -50 }
|
|
33
|
+
thighR: { azimuth: 0, elevation: -50 }
|
|
34
|
+
shinL: { azimuth: 180, elevation: -70 }
|
|
35
|
+
shinR: { azimuth: 180, elevation: -70 }
|
|
36
|
+
footL: { azimuth: 0, elevation: -15 }
|
|
37
|
+
footR: { azimuth: 0, elevation: -15 }
|
|
39
38
|
props:
|
|
40
39
|
- type: mat
|
|
41
40
|
muscles:
|
|
42
|
-
engaged: [gluteus, erectorSpinae, deltoid, triceps, quadriceps]
|
|
43
|
-
stretched: [pectoralis, rectusAbdominis, hipFlexors]
|
|
41
|
+
engaged: [ gluteus, erectorSpinae, deltoid, triceps, quadriceps ]
|
|
42
|
+
stretched: [ pectoralis, rectusAbdominis, hipFlexors ]
|
|
43
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: urdhva-hastasana
|
|
3
3
|
name: Upward Salute
|
|
4
4
|
sanskrit: Ūrdhva Hastāsana
|
|
@@ -7,36 +7,36 @@ discipline: yoga
|
|
|
7
7
|
family: standing
|
|
8
8
|
difficulty: 1
|
|
9
9
|
description: First movement of Surya Namaskara. Arms sweep overhead, palms meet, gaze to the thumbs.
|
|
10
|
-
tags: [ashtanga, surya-namaskara-a, standing, backbend]
|
|
10
|
+
tags: [ ashtanga, surya-namaskara-a, standing, backbend ]
|
|
11
11
|
breath: inhale
|
|
12
12
|
drishti: angustha-ma-dyai
|
|
13
13
|
cues:
|
|
14
14
|
- Sweep the arms wide and up on the inhale
|
|
15
15
|
- Lift the chest, keep the ribs knitted
|
|
16
|
-
contact: [toeL, toeR]
|
|
16
|
+
contact: [ toeL, toeR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: -3
|
|
22
21
|
world:
|
|
23
|
-
thighL: -90
|
|
24
|
-
thighR: -90
|
|
25
|
-
shinL: -90
|
|
26
|
-
shinR: -90
|
|
27
|
-
footL: -18
|
|
28
|
-
footR: -18
|
|
29
|
-
spine:
|
|
30
|
-
neck:
|
|
31
|
-
head:
|
|
32
|
-
upperArmL:
|
|
33
|
-
upperArmR:
|
|
34
|
-
forearmL:
|
|
35
|
-
forearmR:
|
|
36
|
-
handL:
|
|
37
|
-
handR:
|
|
22
|
+
thighL: { azimuth: 0, elevation: -90 }
|
|
23
|
+
thighR: { azimuth: 0, elevation: -90 }
|
|
24
|
+
shinL: { azimuth: 0, elevation: -90 }
|
|
25
|
+
shinR: { azimuth: 0, elevation: -90 }
|
|
26
|
+
footL: { azimuth: 0, elevation: -18 }
|
|
27
|
+
footR: { azimuth: 0, elevation: -18 }
|
|
28
|
+
spine: { azimuth: 180, elevation: 83 }
|
|
29
|
+
neck: { azimuth: 180, elevation: 75 }
|
|
30
|
+
head: { azimuth: 180, elevation: 70 }
|
|
31
|
+
upperArmL: { azimuth: 180, elevation: 80 }
|
|
32
|
+
upperArmR: { azimuth: 180, elevation: 80 }
|
|
33
|
+
forearmL: { azimuth: 180, elevation: 82 }
|
|
34
|
+
forearmR: { azimuth: 180, elevation: 82 }
|
|
35
|
+
handL: { azimuth: 180, elevation: 84 }
|
|
36
|
+
handR: { azimuth: 180, elevation: 84 }
|
|
38
37
|
props:
|
|
39
38
|
- type: mat
|
|
40
39
|
muscles:
|
|
41
|
-
engaged: [deltoid, erectorSpinae, quadriceps]
|
|
42
|
-
stretched: [rectusAbdominis, latissimus]
|
|
40
|
+
engaged: [ deltoid, erectorSpinae, quadriceps ]
|
|
41
|
+
stretched: [ rectusAbdominis, latissimus ]
|
|
42
|
+
camera: front
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: urdhva-mukha-svanasana
|
|
3
3
|
name: Upward-Facing Dog
|
|
4
4
|
sanskrit: Ūrdhva Mukha Śvānāsana
|
|
@@ -7,36 +7,36 @@ discipline: yoga
|
|
|
7
7
|
family: backbend
|
|
8
8
|
difficulty: 3
|
|
9
9
|
description: Arms straight, chest open, thighs lifted off the floor. Only the hands and the tops of the feet touch down.
|
|
10
|
-
tags: [ashtanga, surya-namaskara-a, backbend, arm-support]
|
|
10
|
+
tags: [ ashtanga, surya-namaskara-a, backbend, arm-support ]
|
|
11
11
|
breath: inhale
|
|
12
12
|
drishti: urdhva
|
|
13
13
|
cues:
|
|
14
14
|
- Press the floor away, lift the thighs
|
|
15
15
|
- Draw the chest through the arms, shoulders back
|
|
16
|
-
contact: [toeL, toeR, handTipL, handTipR]
|
|
16
|
+
contact: [ toeL, toeR, handTipL, handTipR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: 60
|
|
22
21
|
world:
|
|
23
|
-
spine: 55
|
|
24
|
-
neck: 80
|
|
25
|
-
head:
|
|
26
|
-
thighL: -
|
|
27
|
-
thighR: -
|
|
28
|
-
shinL: -
|
|
29
|
-
shinR: -
|
|
30
|
-
footL: -
|
|
31
|
-
footR: -
|
|
32
|
-
upperArmL: -80
|
|
33
|
-
upperArmR: -80
|
|
34
|
-
forearmL: -86
|
|
35
|
-
forearmR: -86
|
|
36
|
-
handL: 0
|
|
37
|
-
handR: 0
|
|
22
|
+
spine: { azimuth: 0, elevation: 55 }
|
|
23
|
+
neck: { azimuth: 0, elevation: 80 }
|
|
24
|
+
head: { azimuth: 180, elevation: 75 }
|
|
25
|
+
thighL: { azimuth: 180, elevation: -12 }
|
|
26
|
+
thighR: { azimuth: 180, elevation: -12 }
|
|
27
|
+
shinL: { azimuth: 180, elevation: -8 }
|
|
28
|
+
shinR: { azimuth: 180, elevation: -8 }
|
|
29
|
+
footL: { azimuth: 180, elevation: -20 }
|
|
30
|
+
footR: { azimuth: 180, elevation: -20 }
|
|
31
|
+
upperArmL: { azimuth: 0, elevation: -80 }
|
|
32
|
+
upperArmR: { azimuth: 0, elevation: -80 }
|
|
33
|
+
forearmL: { azimuth: 0, elevation: -86 }
|
|
34
|
+
forearmR: { azimuth: 0, elevation: -86 }
|
|
35
|
+
handL: { azimuth: 0, elevation: 0 }
|
|
36
|
+
handR: { azimuth: 0, elevation: 0 }
|
|
38
37
|
props:
|
|
39
38
|
- type: mat
|
|
40
39
|
muscles:
|
|
41
|
-
engaged: [erectorSpinae, triceps, gluteus, deltoid]
|
|
42
|
-
stretched: [rectusAbdominis, pectoralis, hipFlexors]
|
|
40
|
+
engaged: [ erectorSpinae, triceps, gluteus, deltoid ]
|
|
41
|
+
stretched: [ rectusAbdominis, pectoralis, hipFlexors ]
|
|
42
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: utkatasana
|
|
3
3
|
name: Chair Pose
|
|
4
4
|
sanskrit: Utkaṭāsana
|
|
@@ -7,36 +7,36 @@ discipline: yoga
|
|
|
7
7
|
family: standing
|
|
8
8
|
difficulty: 2
|
|
9
9
|
description: Knees bend deeply, the hips sit back as if onto a chair, the torso leans forward and the arms reach overhead in line with the spine.
|
|
10
|
-
tags: [ashtanga, surya-namaskara-b, standing]
|
|
10
|
+
tags: [ ashtanga, surya-namaskara-b, standing ]
|
|
11
11
|
breath: inhale
|
|
12
12
|
drishti: angustha-ma-dyai
|
|
13
13
|
cues:
|
|
14
14
|
- Sit the hips back, keep the knees over the ankles
|
|
15
15
|
- Reach the arms up alongside the ears
|
|
16
|
-
contact: [toeL, toeR]
|
|
16
|
+
contact: [ toeL, toeR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: 20
|
|
22
21
|
world:
|
|
23
|
-
thighL: -30
|
|
24
|
-
thighR: -30
|
|
25
|
-
shinL: -
|
|
26
|
-
shinR: -
|
|
27
|
-
footL: -18
|
|
28
|
-
footR: -18
|
|
29
|
-
spine: 65
|
|
30
|
-
neck: 70
|
|
31
|
-
head: 72
|
|
32
|
-
upperArmL: 78
|
|
33
|
-
upperArmR: 78
|
|
34
|
-
forearmL: 80
|
|
35
|
-
forearmR: 80
|
|
36
|
-
handL: 82
|
|
37
|
-
handR: 82
|
|
22
|
+
thighL: { azimuth: 0, elevation: -30 }
|
|
23
|
+
thighR: { azimuth: 0, elevation: -30 }
|
|
24
|
+
shinL: { azimuth: 180, elevation: -80 }
|
|
25
|
+
shinR: { azimuth: 180, elevation: -80 }
|
|
26
|
+
footL: { azimuth: 0, elevation: -18 }
|
|
27
|
+
footR: { azimuth: 0, elevation: -18 }
|
|
28
|
+
spine: { azimuth: 0, elevation: 65 }
|
|
29
|
+
neck: { azimuth: 0, elevation: 70 }
|
|
30
|
+
head: { azimuth: 0, elevation: 72 }
|
|
31
|
+
upperArmL: { azimuth: 0, elevation: 78 }
|
|
32
|
+
upperArmR: { azimuth: 0, elevation: 78 }
|
|
33
|
+
forearmL: { azimuth: 0, elevation: 80 }
|
|
34
|
+
forearmR: { azimuth: 0, elevation: 80 }
|
|
35
|
+
handL: { azimuth: 0, elevation: 82 }
|
|
36
|
+
handR: { azimuth: 0, elevation: 82 }
|
|
38
37
|
props:
|
|
39
38
|
- type: mat
|
|
40
39
|
muscles:
|
|
41
|
-
engaged: [quadriceps, gluteus, erectorSpinae, deltoid]
|
|
42
|
-
stretched: [gastrocnemius, latissimus]
|
|
40
|
+
engaged: [ quadriceps, gluteus, erectorSpinae, deltoid ]
|
|
41
|
+
stretched: [ gastrocnemius, latissimus ]
|
|
42
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: uttanasana
|
|
3
3
|
name: Standing Forward Fold
|
|
4
4
|
sanskrit: Uttānāsana
|
|
@@ -7,36 +7,36 @@ discipline: yoga
|
|
|
7
7
|
family: standing
|
|
8
8
|
difficulty: 2
|
|
9
9
|
description: Fold from the hips with straight legs, hands to the floor beside the feet, head toward the shins.
|
|
10
|
-
tags: [ashtanga, surya-namaskara-a, standing, forward-fold]
|
|
10
|
+
tags: [ ashtanga, surya-namaskara-a, standing, forward-fold ]
|
|
11
11
|
breath: exhale
|
|
12
12
|
drishti: nasagrai
|
|
13
13
|
cues:
|
|
14
14
|
- Hinge from the hip joints, not the waist
|
|
15
15
|
- Lengthen the spine before rounding
|
|
16
|
-
contact: [toeL, toeR, handTipL, handTipR]
|
|
16
|
+
contact: [ toeL, toeR, handTipL, handTipR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: 160
|
|
22
21
|
world:
|
|
23
|
-
thighL: -90
|
|
24
|
-
thighR: -90
|
|
25
|
-
shinL: -90
|
|
26
|
-
shinR: -90
|
|
27
|
-
footL: -18
|
|
28
|
-
footR: -18
|
|
29
|
-
spine: -80
|
|
30
|
-
neck: -90
|
|
31
|
-
head: -
|
|
32
|
-
upperArmL: -
|
|
33
|
-
upperArmR: -
|
|
34
|
-
forearmL: -50
|
|
35
|
-
forearmR: -50
|
|
36
|
-
handL: -8
|
|
37
|
-
handR: -8
|
|
22
|
+
thighL: { azimuth: 0, elevation: -90 }
|
|
23
|
+
thighR: { azimuth: 0, elevation: -90 }
|
|
24
|
+
shinL: { azimuth: 0, elevation: -90 }
|
|
25
|
+
shinR: { azimuth: 0, elevation: -90 }
|
|
26
|
+
footL: { azimuth: 0, elevation: -18 }
|
|
27
|
+
footR: { azimuth: 0, elevation: -18 }
|
|
28
|
+
spine: { azimuth: 0, elevation: -80 }
|
|
29
|
+
neck: { azimuth: 0, elevation: -90 }
|
|
30
|
+
head: { azimuth: 180, elevation: -85 }
|
|
31
|
+
upperArmL: { azimuth: 180, elevation: -85 }
|
|
32
|
+
upperArmR: { azimuth: 180, elevation: -85 }
|
|
33
|
+
forearmL: { azimuth: 0, elevation: -50 }
|
|
34
|
+
forearmR: { azimuth: 0, elevation: -50 }
|
|
35
|
+
handL: { azimuth: 0, elevation: -8 }
|
|
36
|
+
handR: { azimuth: 0, elevation: -8 }
|
|
38
37
|
props:
|
|
39
38
|
- type: mat
|
|
40
39
|
muscles:
|
|
41
|
-
engaged: [quadriceps, rectusAbdominis]
|
|
42
|
-
stretched: [hamstrings, erectorSpinae, gastrocnemius]
|
|
40
|
+
engaged: [ quadriceps, rectusAbdominis ]
|
|
41
|
+
stretched: [ hamstrings, erectorSpinae, gastrocnemius ]
|
|
42
|
+
camera: side
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: utthita-parsvakonasana
|
|
3
3
|
name: Extended Side Angle
|
|
4
4
|
sanskrit: Utthita Pārśvakoṇāsana
|
|
@@ -7,38 +7,38 @@ discipline: yoga
|
|
|
7
7
|
family: standing
|
|
8
8
|
difficulty: 3
|
|
9
9
|
description: Legs wide, the front knee bends to a right angle, the bottom hand plants on the floor outside the front foot and the top arm reaches over the ear in one long line from the back heel to the fingertips. Held five breaths.
|
|
10
|
-
tags: [ashtanga, standing, side-bend, primary-series]
|
|
10
|
+
tags: [ ashtanga, standing, side-bend, primary-series ]
|
|
11
11
|
breath: exhale
|
|
12
12
|
drishti: hastagrai
|
|
13
13
|
cues:
|
|
14
14
|
- Front shin vertical, knee stacked over the ankle
|
|
15
15
|
- Press the back heel down and stretch the top arm over the ear
|
|
16
|
-
contact: [toeL, toeR, handTipL]
|
|
16
|
+
contact: [ toeL, toeR, handTipL ]
|
|
17
17
|
figure:
|
|
18
|
-
view: front
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
roll: -60
|
|
22
21
|
world:
|
|
23
|
-
hipL: 0
|
|
24
|
-
hipR:
|
|
25
|
-
thighL: 0
|
|
26
|
-
shinL: -90
|
|
27
|
-
footL: -10
|
|
28
|
-
thighR: -
|
|
29
|
-
shinR: -
|
|
30
|
-
footR: -
|
|
31
|
-
spine: 30
|
|
32
|
-
neck: 35
|
|
33
|
-
head: 55
|
|
34
|
-
upperArmL: -55
|
|
35
|
-
forearmL: -55
|
|
36
|
-
handL: -55
|
|
37
|
-
upperArmR: 30
|
|
38
|
-
forearmR: 30
|
|
39
|
-
handR: 30
|
|
22
|
+
hipL: { azimuth: 90, elevation: 0 }
|
|
23
|
+
hipR: { azimuth: -90, elevation: 0 }
|
|
24
|
+
thighL: { azimuth: 90, elevation: 0 }
|
|
25
|
+
shinL: { azimuth: 90, elevation: -90 }
|
|
26
|
+
footL: { azimuth: 90, elevation: -10 }
|
|
27
|
+
thighR: { azimuth: -90, elevation: -30 }
|
|
28
|
+
shinR: { azimuth: -90, elevation: -30 }
|
|
29
|
+
footR: { azimuth: -90, elevation: -10 }
|
|
30
|
+
spine: { azimuth: 90, elevation: 30 }
|
|
31
|
+
neck: { azimuth: 90, elevation: 35 }
|
|
32
|
+
head: { azimuth: 90, elevation: 55 }
|
|
33
|
+
upperArmL: { azimuth: 90, elevation: -55 }
|
|
34
|
+
forearmL: { azimuth: 90, elevation: -55 }
|
|
35
|
+
handL: { azimuth: 90, elevation: -55 }
|
|
36
|
+
upperArmR: { azimuth: 90, elevation: 30 }
|
|
37
|
+
forearmR: { azimuth: 90, elevation: 30 }
|
|
38
|
+
handR: { azimuth: 90, elevation: 30 }
|
|
40
39
|
props:
|
|
41
40
|
- type: mat
|
|
42
41
|
muscles:
|
|
43
|
-
engaged: [quadriceps, gluteus, obliques, deltoid]
|
|
44
|
-
stretched: [adductors, latissimus, obliques, hipFlexors]
|
|
42
|
+
engaged: [ quadriceps, gluteus, obliques, deltoid ]
|
|
43
|
+
stretched: [ adductors, latissimus, obliques, hipFlexors ]
|
|
44
|
+
camera: front
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: utthita-trikonasana
|
|
3
3
|
name: Extended Triangle
|
|
4
4
|
sanskrit: Utthita Trikoṇāsana
|
|
@@ -7,38 +7,38 @@ discipline: yoga
|
|
|
7
7
|
family: standing
|
|
8
8
|
difficulty: 2
|
|
9
9
|
description: Legs wide and straight, the torso tilts sideways over the front leg, the bottom hand catches the big toe and the top arm reaches straight up. Held five breaths.
|
|
10
|
-
tags: [ashtanga, standing, side-bend, primary-series]
|
|
10
|
+
tags: [ ashtanga, standing, side-bend, primary-series ]
|
|
11
11
|
breath: exhale
|
|
12
12
|
drishti: hastagrai
|
|
13
13
|
cues:
|
|
14
14
|
- Reach sideways out of the waist before you tilt down
|
|
15
15
|
- Stack both shoulders in one line, chest open to the side
|
|
16
|
-
contact: [toeL, toeR, handTipL]
|
|
16
|
+
contact: [ toeL, toeR, handTipL ]
|
|
17
17
|
figure:
|
|
18
|
-
view: front
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
roll: -65
|
|
22
21
|
world:
|
|
23
|
-
hipL: 0
|
|
24
|
-
hipR:
|
|
25
|
-
thighL: -45
|
|
26
|
-
shinL: -45
|
|
27
|
-
footL:
|
|
28
|
-
thighR: -
|
|
29
|
-
shinR: -
|
|
30
|
-
footR: -
|
|
31
|
-
spine: 25
|
|
32
|
-
neck: 30
|
|
33
|
-
head: 55
|
|
34
|
-
upperArmL: -80
|
|
35
|
-
forearmL: -80
|
|
36
|
-
handL: -80
|
|
37
|
-
upperArmR:
|
|
38
|
-
forearmR:
|
|
39
|
-
handR:
|
|
22
|
+
hipL: { azimuth: 90, elevation: 0 }
|
|
23
|
+
hipR: { azimuth: -90, elevation: 0 }
|
|
24
|
+
thighL: { azimuth: 90, elevation: -45 }
|
|
25
|
+
shinL: { azimuth: 90, elevation: -45 }
|
|
26
|
+
footL: { azimuth: 90, elevation: 0 }
|
|
27
|
+
thighR: { azimuth: -90, elevation: -45 }
|
|
28
|
+
shinR: { azimuth: -90, elevation: -45 }
|
|
29
|
+
footR: { azimuth: -90, elevation: 0 }
|
|
30
|
+
spine: { azimuth: 90, elevation: 25 }
|
|
31
|
+
neck: { azimuth: 90, elevation: 30 }
|
|
32
|
+
head: { azimuth: 90, elevation: 55 }
|
|
33
|
+
upperArmL: { azimuth: 90, elevation: -80 }
|
|
34
|
+
forearmL: { azimuth: 90, elevation: -80 }
|
|
35
|
+
handL: { azimuth: 90, elevation: -80 }
|
|
36
|
+
upperArmR: { azimuth: -90, elevation: 80 }
|
|
37
|
+
forearmR: { azimuth: -90, elevation: 80 }
|
|
38
|
+
handR: { azimuth: -90, elevation: 80 }
|
|
40
39
|
props:
|
|
41
40
|
- type: mat
|
|
42
41
|
muscles:
|
|
43
|
-
engaged: [quadriceps, obliques, deltoid, erectorSpinae]
|
|
44
|
-
stretched: [hamstrings, adductors, obliques, latissimus]
|
|
42
|
+
engaged: [ quadriceps, obliques, deltoid, erectorSpinae ]
|
|
43
|
+
stretched: [ hamstrings, adductors, obliques, latissimus ]
|
|
44
|
+
camera: front
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asanakit:
|
|
1
|
+
asanakit: 2
|
|
2
2
|
id: virabhadrasana-a
|
|
3
3
|
name: Warrior I
|
|
4
4
|
sanskrit: Vīrabhadrāsana A
|
|
@@ -7,36 +7,36 @@ discipline: yoga
|
|
|
7
7
|
family: standing
|
|
8
8
|
difficulty: 3
|
|
9
9
|
description: A long lunge. The front knee bends over the ankle, the back leg drives straight to a grounded heel, the chest lifts and the arms reach overhead.
|
|
10
|
-
tags: [ashtanga, standing, lunge, backbend]
|
|
10
|
+
tags: [ ashtanga, standing, lunge, backbend ]
|
|
11
11
|
breath: inhale
|
|
12
12
|
drishti: angustha-ma-dyai
|
|
13
13
|
cues:
|
|
14
14
|
- Front knee tracks over the ankle, back leg straight and strong
|
|
15
15
|
- Lift the chest, reach the fingertips up
|
|
16
|
-
contact: [toeL, toeR]
|
|
16
|
+
contact: [ toeL, toeR ]
|
|
17
17
|
figure:
|
|
18
|
-
view: side
|
|
19
18
|
grounded: true
|
|
20
19
|
root:
|
|
21
|
-
|
|
20
|
+
pitch: 2
|
|
22
21
|
world:
|
|
23
|
-
thighL: -15
|
|
24
|
-
shinL: -
|
|
25
|
-
footL: -18
|
|
26
|
-
thighR: -
|
|
27
|
-
shinR: -
|
|
28
|
-
footR: -15
|
|
29
|
-
spine:
|
|
30
|
-
neck:
|
|
31
|
-
head:
|
|
32
|
-
upperArmL:
|
|
33
|
-
upperArmR:
|
|
34
|
-
forearmL:
|
|
35
|
-
forearmR:
|
|
36
|
-
handL:
|
|
37
|
-
handR:
|
|
22
|
+
thighL: { azimuth: 0, elevation: -15 }
|
|
23
|
+
shinL: { azimuth: 180, elevation: -85 }
|
|
24
|
+
footL: { azimuth: 0, elevation: -18 }
|
|
25
|
+
thighR: { azimuth: 180, elevation: -38 }
|
|
26
|
+
shinR: { azimuth: 180, elevation: -38 }
|
|
27
|
+
footR: { azimuth: 0, elevation: -15 }
|
|
28
|
+
spine: { azimuth: 180, elevation: 88 }
|
|
29
|
+
neck: { azimuth: 180, elevation: 83 }
|
|
30
|
+
head: { azimuth: 180, elevation: 80 }
|
|
31
|
+
upperArmL: { azimuth: 180, elevation: 81 }
|
|
32
|
+
upperArmR: { azimuth: 180, elevation: 81 }
|
|
33
|
+
forearmL: { azimuth: 180, elevation: 83 }
|
|
34
|
+
forearmR: { azimuth: 180, elevation: 83 }
|
|
35
|
+
handL: { azimuth: 180, elevation: 85 }
|
|
36
|
+
handR: { azimuth: 180, elevation: 85 }
|
|
38
37
|
props:
|
|
39
38
|
- type: mat
|
|
40
39
|
muscles:
|
|
41
|
-
engaged: [quadriceps, gluteus, erectorSpinae, deltoid]
|
|
42
|
-
stretched: [hipFlexors, gastrocnemius, pectoralis]
|
|
40
|
+
engaged: [ quadriceps, gluteus, erectorSpinae, deltoid ]
|
|
41
|
+
stretched: [ hipFlexors, gastrocnemius, pectoralis ]
|
|
42
|
+
camera: side
|