blob: c1591e65b653a885d030faff7b49d8fb666c80f5 (
plain)
1
2
3
4
5
6
7
|
<svg xmlns='http://www.w3.org/2000/svg'>
<g transform="translate(30,30)">
<!-- transform-origin specifies a point in user space -->
<rect x='10' y='10' width='100' height='100' fill='blue'
style="transform:rotate(90deg); transform-origin:10px 110px;"/>
</g>
</svg>
|