SVG Path Builder
Learn the primitive commands used by D3.js to draw lines and curves.
Path Commands (d="")
| M x y | Move to (starts a new subpath) |
| L x y | Line to (draws a straight line) |
| C x1 y1, x2 y2, x y | Cubic curve (two control points) |
| Z | Close path (draws line back to start) |