blob: ee0f58da91d795df890a54f77f5fa3cfdf1dfe11 (
plain) (
blame)
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
|
<?xml version="1.0"?>
<!--
license:CC0
-->
<mamelayout version="2">
<!-- define elements -->
<element name="gray"><disk><color red="0.45" green="0.45" blue="0.45" /></disk></element>
<!-- build screen -->
<view name="Internal Layout">
<screen index="0"><bounds x="0" y="0" width="96" height="23.9" /></screen>
<!-- draw the baseball diamond -->
<repeat count="200">
<param name="x" start="21" increment="0.145" />
<param name="y" start="16" increment="-0.0475" />
<element ref="gray"><bounds x="~x~" y="~y~" width="0.7" height="0.7" /><color alpha="0.15" /></element>
</repeat>
<repeat count="199">
<param name="x" start="21.145" increment="0.145" />
<param name="y" start="16.0475" increment="0.0475" />
<element ref="gray"><bounds x="~x~" y="~y~" width="0.7" height="0.7" /><color alpha="0.15" /></element>
</repeat>
<repeat count="200">
<param name="x" start="50" increment="0.145" />
<param name="y" start="6.5" increment="0.0475" />
<element ref="gray"><bounds x="~x~" y="~y~" width="0.7" height="0.7" /><color alpha="0.15" /></element>
</repeat>
<repeat count="199">
<param name="x" start="50" increment="0.145" />
<param name="y" start="25.5" increment="-0.0475" />
<element ref="gray"><bounds x="~x~" y="~y~" width="0.7" height="0.7" /><color alpha="0.15" /></element>
</repeat>
</view>
</mamelayout>
|