1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
root:
items:
- type: rect # short, horizontal
bounds: [ 4, 2, 5, 1 ]
color: green
- type: rect # short, vertical
bounds: [ 12, 14, 1, 5 ]
color: red
style: solid
- type: rect # long, horizontal
bounds: [ 34, 32, 200, 3 ]
color: blue
style: solid
- type: rect # long, vertical
bounds: [ 52, 54, 3, 200 ]
color: black
style: solid
|