#pragma once #include using namespace std; void color_find(vector& bins, int maxb, int& color); void svg_begin(double width, double height); void svg_end(); void svg_text(double left, double baseline, string text); void svg_rect(double x, double y, double width, double height, string stroke, string fill); void show_histogram_svg(const vector& bins);