feat: Implement circle drawing tool

Co-authored-by: aider (gemini/gemini-2.5-pro) <aider@aider.chat>
This commit is contained in:
2026-02-17 15:15:24 -07:00
parent 4b0a903052
commit 7f6c01c8a0
8 changed files with 131 additions and 1 deletions

View File

@@ -8,7 +8,8 @@ class SketchObject
public:
enum class ObjectType {
Line,
Rectangle
Rectangle,
Circle
};
SketchObject() = default;