Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
16 строки
383 B
C++
16 строки
383 B
C++
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#ifndef LAB4_SVG_H
|
|
#define LAB4_SVG_H
|
|
|
|
#endif //LAB4_SVG_H
|
|
|
|
void svg_begin(double width, double height);
|
|
void svg_end();
|
|
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 fill);
|
|
void show_histogram_svg(const std::vector<size_t>& bins);
|