From 930ae90e2a81f4389f71ff4edb5724e25fe75d51 Mon Sep 17 00:00:00 2001 From: KapitonovMikA Date: Mon, 20 May 2024 03:31:41 +0300 Subject: [PATCH] =?UTF-8?q?build:=20=D1=84=D0=B0=D0=B9=D0=BB=20=D1=80?= =?UTF-8?q?=D0=B5=D0=B0=D0=BB=D0=B8=D0=B7=D0=B0=D1=86=D0=B8=D0=B8,=20?= =?UTF-8?q?=D1=84=D0=BE=D1=80=D0=BC=D0=B0=D1=82=20svg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- svg01.cpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 svg01.cpp diff --git a/svg01.cpp b/svg01.cpp new file mode 100644 index 0000000..4d7589e --- /dev/null +++ b/svg01.cpp @@ -0,0 +1,27 @@ +#include "svg01.h" +#include +#include + +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(); +} +