From 3111c407490ac8d1bab2fe0337681e2ef1279293 Mon Sep 17 00:00:00 2001 From: KuzmenkoEA Date: Mon, 22 Apr 2024 00:23:25 +0300 Subject: [PATCH] =?UTF-8?q?build:=20=D1=84=D0=BE=D1=80=D0=BC=D0=B0=D1=82?= =?UTF-8?q?=20svg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- svg.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 svg.h diff --git a/svg.h b/svg.h new file mode 100644 index 0000000..ecbb402 --- /dev/null +++ b/svg.h @@ -0,0 +1,16 @@ +#pragma once + +void +svg_text(double left, double baseline, std::string text); + +void +svg_begin(double width, double height); + +void +svg_end(); + +void +show_histogram_svg(const std::vector& bins); + + +