Path construction interpreter (m l c re S f B)

This commit is contained in:
saqib mir
2026-06-22 15:21:39 +05:30
parent ac5a1cc516
commit d290e65685
13 changed files with 146 additions and 9 deletions
+1
View File
@@ -17,6 +17,7 @@ public:
void visit(const DrawTextCommand& cmd) override { calls.push_back("DrawText(" + cmd.text + ")"); }
void visit(const FillPathCommand&) override { calls.push_back("FillPath"); }
void visit(const StrokePathCommand&) override { calls.push_back("StrokePath"); }
void visit(const FillStrokePathCommand&) override { calls.push_back("FillStrokePath"); }
void visit(const DrawImageCommand&) override { calls.push_back("DrawImage"); }
};