25Arc Playground
II · Drawing with SVG
The SVG arc command dissected, one A segment at a time.
Source
2 files<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CodeSandbox</title>
</head>
<body>
<svg viewBox="0 0 16 16">
<path
d="
M 2,2
L 5,5
A 4,4 0 0 0 11,11
L 14,14
"
/>
</svg>
</body>
</html>