1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
package yoga.service
import java.net.URI
import yoga.model.{ Pose, PoseCategory, FileRights }
object Poses {
def values: Seq[Pose] = Seq(
Pose(
name = "Downward-Facing Dog",
category = PoseCategory.Standing,
image = URI.create("downward-facing-dog.jpg"),
rights = FileRights(
author = "Joseph RENGER",
licence = Licences.CreativeCommons.attributionAlike_3_0
)
),
Pose(
name = "Downward-Facing Tree",
otherNames = Seq("Yoga Handstand"),
category = PoseCategory.Balancing,
image = URI.create("downward-facing-tree.jpg"),
rights = FileRights(
author = "Chiswick Chap",
licence = Licences.CreativeCommons.attributionAlike_4_0,
modification = Some("cropped 81 % horizontally, 9 % vertically using CropTool with precise mode.")
)
),
// Pose(
// name = "Shooting bow",
// otherNames = Seq("Archer", "Bow and arrow"),
// category = PoseCategory.Sitting,
// image = URI.create("shooting-bow.jpg"),
// licence = Licences.CreativeCommons.attributionAlike_4_0
// ),
// Pose(
// name = "Ananta’s pose",
// otherNames = Seq("Vishnu’s Couch pose"),
// category = PoseCategory.Reclining,
// image = URI.create("ananta-pose.jpg"),
// licence = Licences.CreativeCommons.attributionAlike_4_0
// ),
// Pose(
// name = "Crescent Moon",
// category = PoseCategory.Standing,
// image = URI.create("crescent-moon.jpg"),
// licence = Licences.CreativeCommons.attributionAlike_3_0
// ),
// Pose(
// name = "Half moon",
// category = PoseCategory.Standing,
// image = URI.create("half-moon.jpg"),
// licence = Licences.CreativeCommons.attributionAlike_3_0
// )
)
}
|