| <?xml version="1.0" encoding="UTF-8"?> |
| <svg xmlns="http://www.w3.org/2000/svg"> |
| <rect x="50" y="50" width="100" height="100" fill="green" transform="rotate(45 100 100)"/> |
| <rect x="50" y="200" width="100" height="100" fill="green" transform="rotate(45 100 250)"/> <!-- Identical to "rotate(22.5 100 250) rotate(22.5 100 250)" --> |
| <rect x="50" y="350" width="100" height="100" fill="green" transform="rotate(45 100 400)"/> |
| |
| <rect x="200" y="50" width="100" height="100" fill="green" transform="rotate(45 250 100)"/> |
| <rect x="200" y="200" width="100" height="100" fill="green" transform="rotate(45 250 250)"/> |
| <rect x="200" y="350" width="100" height="100" fill="green" transform="rotate(45 250 400)"/> <!-- Identical to "rotate(22.5 250 400) rotate(22.5 250 400)" --> |
| </svg> |