-
Notifications
You must be signed in to change notification settings - Fork 0
/
shapes.xml
82 lines (82 loc) · 1.81 KB
/
shapes.xml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<shapes>
<line>
<color>magenta</color>
<order>2</order>
<x>10</x>
<y>10</y>
<x2>50</x2>
<y2>20</y2>
</line>
<rectangle>
<color>blue</color>
<order>3</order>
<x>200</x>
<y>200</y>
<height>80</height>
<width>150</width>
</rectangle>
<fillRectangle>
<color>cyan</color>
<order>0</order>
<x>210</x>
<y>210</y>
<height>60</height>
<width>130</width>
</fillRectangle>
<oval>
<color>darkGray</color>
<order>4</order>
<x>450</x>
<y>100</y>
<height>120</height>
<width>150</width>
</oval>
<fillOval>
<color>pink</color>
<order>0</order>
<x>450</x>
<y>100</y>
<height>100</height>
<width>130</width>
</fillOval>
<text>
<color>blue</color>
<order>10</order>
<x>410</x>
<y>110</y>
<text>Виват Цезарь!</text>
</text>
<text>
<color>darkGray</color>
<order>10</order>
<x>420</x>
<y>130</y>
<text>Виват Император!</text>
</text>
<text>
<color>#FF80FF40</color>
<order>10</order>
<x>30</x>
<y>150</y>
<text>Привет Мир!</text>
</text>
<circle>
<color>#FF4080FF</color>
<order>4</order>
<x>130</x>
<y>70</y>
<height>80</height>
<width>80</width>
<radius>40</radius>
</circle>
<fillCircle>
<color>#FF80C080</color>
<order>0</order>
<x>130</x>
<y>70</y>
<height>60</height>
<width>60</width>
<radius>30</radius>
</fillCircle>
</shapes>