I need your help, I'm a little confused.
My question is: how does SVG curveTo work, I really don't understand.
find this example
<svg height="400" width="400">
<path d="M 200 90 C 200 90 0 0 90 300 " stroke="black" fill="none" stroke-width="3"/>
</svg>
this code draws this form

but actually I can’t understand how this is done, I can’t understand how the curve is defined and what control points and what 0 0-coordinate is presented in my example.
source
share