Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
10 строки
309 B
C++
10 строки
309 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
void svg_begin(double, double);
|
|
void svg_end();
|
|
void svg_text(double, double, const std::string&);
|
|
void svg_rect(double, double, double, double, const std::string& = "black", const std::string& = "black");
|
|
void show_histogram_svg(const std::vector<size_t>&);
|