MathCurve-optimized.svg 802 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <svg width="500px" height="250px" viewBox="0 0 1200 600" xmlns="http://www.w3.org/2000/svg"
  3. xmlns:xlink="http://www.w3.org/1999/xlink">
  4. <!-- Modified from SVG spec example to have a multi-stage/recursive Q part -->
  5. <path d="M200,300 Q400,50 600,300 800,550 1000,300"
  6. fill="none" stroke="red" stroke-width="5" />
  7. <circle cx="200" cy="300" r="10" fill="black" />
  8. <circle cx="600" cy="300" r="10" fill="black" />
  9. <circle cx="1000" cy="300" r="10" fill="black" />
  10. <circle cx="400" cy="50" r="10" fill="#888888"/>
  11. <circle cx="800" cy="550" r="10" fill="#888888"/>
  12. <path d="M200,300 L400,50 L600,300 ZM600,300
  13. L800,550 L1000,300 L600,300"
  14. fill="none" stroke="#888888" stroke-width="2" />
  15. </svg>