From 6aa080491dc737cd4b6af4f979c7d73f49babd0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D1=91=D0=BD=D0=B0=20=D0=90=D1=83=D0=BB=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0?= Date: Sun, 4 Jun 2023 23:56:53 +0300 Subject: [PATCH] : --- svg.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 svg.cpp diff --git a/svg.cpp b/svg.cpp new file mode 100644 index 0000000..467d8a3 --- /dev/null +++ b/svg.cpp @@ -0,0 +1,25 @@ +#include +#include +#include "svg.h" +using namespace std; + + +void +svg_begin(double width, double height) { + cout << "\n"; + cout << "\n"; +} + +void +svg_end() { + cout << "\n"; +} +void +show_histogram_svg(const vector &bins) { + svg_begin(400, 300); + svg_end(); +}