gtk/testsuite/gsk/compare/dihedral.node
Benjamin Otte efacf2ff09 testsuite: Add tests for dihedral transforms
Just to make sure stuff shows up in the right place.
2024-07-10 21:34:12 +02:00

56 lines
893 B
Plaintext

transform {
child: color {
bounds: 0 0 50 50;
color: rgb(0,255,0);
}
}
transform {
transform: rotate(90);
child: color {
bounds: 0 0 50 50;
color: rgb(255,0,0);
}
}
transform {
transform: rotate(180);
child: color {
bounds: 0 0 50 50;
color: rgb(255,255,0);
}
}
transform {
transform: rotate(270);
child: color {
bounds: 0 0 50 50;
color: rgb(0,0,255);
}
}
transform {
transform: scale(2, -2);
child: color {
bounds: 25 -50 25 25;
color: rgb(0,255,0);
}
}
transform {
transform: rotate(90) scale(-2);
child: color {
bounds: -50 -50 25 25;
color: rgb(255,0,0);
}
}
transform {
transform: rotate(180) scale(-2, 2);
child: color {
bounds: -50 25 25 25;
color: rgb(255,255,0);
}
}
transform {
transform: rotate(270) scale(2);
child: color {
bounds: 25 25 25 25;
color: rgb(0,0,255);
}
}