Skip to content

Instantly share code, notes, and snippets.

@gwpl
Created May 31, 2018 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gwpl/24cab1d01e489e037b2b49bb3496a309 to your computer and use it in GitHub Desktop.
Save gwpl/24cab1d01e489e037b2b49bb3496a309 to your computer and use it in GitHub Desktop.
w3schools example : svg_path with absolute coordinates Q instead of relative q for curve
Converted w3schools example from relative "q" to absolute "Q" to make it more readiable according to controlpoints A,B,C.
<br/>
<svg height="400" width="450">
<path id="lineAB" d="M 100 350 l 150 -300" stroke="red" stroke-width="3" fill="none" />
<path id="lineBC" d="M 250 50 l 150 300" stroke="red" stroke-width="3" fill="none" />
<path d="M 175 200 l 150 0" stroke="green" stroke-width="3" fill="none" />
<path d="M 100 350 Q 250 50 400 350" stroke="blue" stroke-width="5" fill="none" />
<!-- Mark relevant points -->
<g stroke="black" stroke-width="3" fill="black">
<circle id="pointA" cx="100" cy="350" r="3" />
<circle id="pointB" cx="250" cy="50" r="3" />
<circle id="pointC" cx="400" cy="350" r="3" />
</g>
<!-- Label the points -->
<g font-size="30" font-family="sans-serif" fill="black" stroke="none" text-anchor="middle">
<text x="100" y="350" dx="-30">A</text>
<text x="250" y="50" dy="-10">B</text>
<text x="400" y="350" dx="30">C</text>
</g>
Sorry, your browser does not support inline SVG.
</svg>
<br/>
<a href="https://www.w3schools.com/graphics/svg_path.asp">Link to original w3schools example</a>.
@gwpl
Copy link
Author

gwpl commented May 31, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment