8/3. feladat megoldása


<?xml version="1.0"?>

<!DOCTYPE svg PUBLIC "-//W3//DTD SVG 1.1//EN"
	"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">

<svg xmlns= "http://www.w3.org/2000/svg"
     xmlns:xlink= "http://www.w3.org/1999/xlink"
     version="1.1" width="200" height="200">

<defs>

<symbol id="negyzet">
	<rect x="60" y="60" width="80" height="80"/>
</symbol>

</defs>


<g style="fill-opacity: 0.5;">
	<use xlink:href="#negyzet" style="fill: blue;"/>
	<use xlink:href="#negyzet" style="fill: yellow;"
	     transform="rotate(45,100,100)"/>
</g>

</svg>