1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Crossed planes test. Similar to "simple" but has more complex transformations,
# which puts higher requirements on the precision of arithmetics,
# and all 4 pieces are visible on screen.
---
root:
items:
- type: stacking-context
bounds: [0, 0, 100, 200]
transform-style: preserve-3d
items:
- type: stacking-context
bounds: [0, 0, 100, 200]
transform: rotate-y(45) rotate-x(45)
items:
- type: rect
bounds: [0, 0, 100, 100]
color: red
- type: stacking-context
bounds: [0, 0, 100, 200]
transform: rotate-y(-45) rotate-x(45)
items:
- type: rect
bounds: [0, 0, 100, 100]
color: green
|