24 lines
761 B
YAML
24 lines
761 B
YAML
# 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
|