Learning_GTK4_tree/testsuite/gsk/compare/z-transform-clipping-bounds-3d.node
2023-12-12 11:36:42 +01:00

28 lines
496 B
Text

transform {
transform: translate3d(0, 0, -10000);
child: color {
bounds: 0 0 50 50;
color: rgb(255,0,0);
}
}
transform {
transform: translate3d(0, 0, -10001);
child: color {
bounds: 50 0 50 50;
color: rgb(255,255,0);
}
}
transform {
transform: translate3d(0, 0, 10000);
child: color {
bounds: 0 50 50 50;
color: rgb(0,255,0);
}
}
transform {
transform: translate3d(0, 0, 10001);
child: color {
bounds: 50 50 50 50;
color: rgb(0,0,255);
}
}