Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
30 строки
780 B
C++
30 строки
780 B
C++
/*#pragma once
|
|
#include <iostream>
|
|
#include <vector>
|
|
|
|
void
|
|
show_histogram_svg(std::vector<size_t>& bins, size_t & max_count,size_t & bin_count);
|
|
void
|
|
svg_begin(double width, double height);
|
|
void
|
|
svg_text(double left, double baseline, std::string text);
|
|
void
|
|
svg_rect(double x, double y, double width, double height,std::string stroke, std::string fil);
|
|
void
|
|
svg_end();*/
|
|
#pragma once
|
|
#include <iostream>
|
|
#include <vector>
|
|
//#include <string>
|
|
|
|
void
|
|
show_histogram_svg(std::vector<size_t>& bins, size_t & max_count,size_t & bin_count);
|
|
void
|
|
svg_begin(double width, double height);
|
|
void
|
|
svg_text(double left, double baseline, std::string text);
|
|
void
|
|
svg_rect(double x, double y, double width, double height, double fill_opacity, std::string stroke, std::string fil);
|
|
void
|
|
svg_end();
|