diff --git a/svg.cpp b/svg.cpp index 08a904a..5b557cc 100644 --- a/svg.cpp +++ b/svg.cpp @@ -9,10 +9,12 @@ void svg_text(double left, double baseline, string text) { cout << "" << text << ""; } - -void -svg_rect(double x, double y, double width, double height) { - cout << "\n"; + +void svg_rect(double x, double y, double width, double height, string stroke = "black", string fill = "black") +{ + cout << "\n"; } void