Werkzeuge: Bogen-Werkzeug (arcCommand, 3-Klick CCW) + Toolbar/Icon/i18n verdrahtet

This commit is contained in:
2026-07-05 15:44:05 +02:00
parent 5130a050ff
commit bd2b12bfb7
8 changed files with 207 additions and 1 deletions
+7
View File
@@ -118,6 +118,13 @@ function ToolIcon({ id }: { id: ToolId }) {
<circle cx="8" cy="8" r="5.5" />
</svg>
);
case "arc":
// Offener Halbbogen.
return (
<svg {...common}>
<path d="M 2.5 12 A 5.5 5.5 0 0 1 13.5 12" fill="none" />
</svg>
);
default:
return null;
}