bike.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG April 1999//EN"
  3. "http://www.w3.org/Graphics/SVG/svg-19990412.dtd">
  4. <!--DOCTYPE svg SYSTEM "svg-19990412.dtd"-->
  5. <svg width="4in" height="3in">
  6. <title>Kona Lavadome mountain bike
  7. </title>
  8. <desc>This picture shows a mountain bike, a human-propelled,
  9. multi-terrain vehicle. While it can be succesfully used on moorland,
  10. forest, roads, and large hills it is not actually suitable for going
  11. up mountains.
  12. </desc>
  13. <g id="bike">
  14. <defs>
  15. <symbol id="spoke"><desc>14/12 gauge double butted spoke</desc>
  16. <!-- the path data goes here --></symbol>
  17. <symbol id="hub"><desc>black anodised low torsion hub</desc>
  18. <!--the path data goes here --></symbol>
  19. <symbol id="rim"><desc>twin wall, eyeletted rim</desc>
  20. <!-- the path data goes here--></symbol>
  21. <symbol id="cogs"><desc>8 speed, wide ratio gearing</desc>
  22. <!--the path data goes here --></symbol>
  23. <symbol id="lacing"><desc>double cross lacing of 32 spokes</desc>
  24. </symbol>
  25. </defs>
  26. <!-- the overall bike drawing goes here -->
  27. <g id="frontwheel">
  28. <title>Front wheel</title>
  29. <desc>The front wheel provides grip, steering and some shock absorption</desc>
  30. <use href="id(lacing)" style="rotation: 20deg; fillcolor: black"/>
  31. </g>
  32. <g id="backwheel">
  33. </g>
  34. <g id="frame"><!-- and so on -->
  35. </g>
  36. </g>
  37. </svg>