blob: 3a83468bcf9f006db984ca801395afa40fd921c7 (
plain)
1
2
3
4
5
6
7
8
9
|
<?xml version="1.0" standalone="yes"?>
<svg:svg width="10cm" height="3cm" xmlns:svg="http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd">
<svg:desc>Example Use03 - 'use' with a 'transform' attribute</svg:desc>
<svg:defs>
<svg:rect id="MyRect" x="0" y="0" width="6cm" height="1cm"/>
</svg:defs>
<svg:use xlink:href="#MyRect" transform="translate(2cm,.25cm) rotate(10)" style="fill:black"/>
</svg:svg>
|