CGPathWriterTest.PathDataCubicBezierCommands.svg 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" standalone="no"?>
  2. <!-- http://www.w3.org/TR/SVG11/paths.html#PathDataCubicBezierCommands -->
  3. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
  4. "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  5. <svg width="5cm" height="4cm" viewBox="0 0 500 400"
  6. xmlns="http://www.w3.org/2000/svg" version="1.1">
  7. <title>Example cubic01- cubic Bézier commands in path data</title>
  8. <desc>Picture showing a simple example of path data
  9. using both a "C" and an "S" command,
  10. along with annotations showing the control points
  11. and end points</desc>
  12. <style type="text/css"><![CDATA[
  13. .Border { fill:none; stroke:blue; stroke-width:1 }
  14. .Connect { fill:none; stroke:#888888; stroke-width:2 }
  15. .SamplePath { fill:none; stroke:red; stroke-width:5 }
  16. .EndPoint { fill:none; stroke:#888888; stroke-width:2 }
  17. .CtlPoint { fill:#888888; stroke:none }
  18. .AutoCtlPoint { fill:none; stroke:blue; stroke-width:4 }
  19. .Label { font-size:22; font-family:Verdana }
  20. ]]></style>
  21. <rect class="Border" x="1" y="1" width="498" height="398" />
  22. <polyline class="Connect" points="100,200 100,100" />
  23. <polyline class="Connect" points="250,100 250,200" />
  24. <polyline class="Connect" points="250,200 250,300" />
  25. <polyline class="Connect" points="400,300 400,200" />
  26. <path class="SamplePath" d="M100,200 C100,100 250,100 250,200
  27. S400,300 400,200" />
  28. <circle class="EndPoint" cx="100" cy="200" r="10" />
  29. <circle class="EndPoint" cx="250" cy="200" r="10" />
  30. <circle class="EndPoint" cx="400" cy="200" r="10" />
  31. <circle class="CtlPoint" cx="100" cy="100" r="10" />
  32. <circle class="CtlPoint" cx="250" cy="100" r="10" />
  33. <circle class="CtlPoint" cx="400" cy="300" r="10" />
  34. <circle class="AutoCtlPoint" cx="250" cy="300" r="9" />
  35. <text class="Label" x="25" y="70">M100,200 C100,100 250,100 250,200</text>
  36. <text class="Label" x="325" y="350"
  37. style="text-anchor:middle">S400,300 400,200</text>
  38. </svg>