topical media & game development
mobile-game-ch14-pattern.htm / htm
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gradient Test</title>
</head>
<body>
<svg id="mysvg" xmlns="http://www.w3.org/2000/svg" version="1.1"
width="800" height="800" >
<defs>
<pattern id="pattern-test" patternUnits="userSpaceOnUse"
x="0" y="0" width="50" height="50"
viewBox="0 0 10 10" >
<circle cx="5" cy="5" r="5" fill="black" />
<polyline points="0,0 10,10" stroke="white" stroke-width="2"/>
</pattern>
</defs>
<ellipse fill="url(#pattern-test)" stroke="black" stroke-width="5"
cx="400" cy="200" rx="350" ry="150" />
</svg>
</body>
</html>
(C) Æliens
04/09/2009
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.