Skip to content

Instantly share code, notes, and snippets.

@ademar111190
Created August 5, 2020 20:03
Show Gist options
  • Save ademar111190/75c53deaa121f58697ce61754d9f8e03 to your computer and use it in GitHub Desktop.
Save ademar111190/75c53deaa121f58697ce61754d9f8e03 to your computer and use it in GitHub Desktop.
Learning quadratic curves
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="UTF-8"?>
<svg
height="500"
version="1.1"
viewBox="0 0 500 500"
width="500"
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve">
<path
d="M250,2 Q332.6,67.3,498,100 Q415.3,365.3,250,498 Q84.6,365.3,2,100 Q167.3,67.3,250,2"
fill="#005C8B" />
<circle
cx="250"
cy="100"
fill="green"
r="10" />
<circle
cx="332.6"
cy="67.3"
fill="red"
r="10" />
<circle
cx="167.3"
cy="67.3"
fill="red"
r="10" />
<circle
cx="415.3"
cy="365.3"
fill="red"
r="10" />
<circle
cx="84.6"
cy="365.3"
fill="red"
r="10" />
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment