Вы не можете выбрать более 25 тем
			Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
		
		
		
		
		
			
		
			
				
	
	
		
			15 строки
		
	
	
		
			399 B
		
	
	
	
		
			C++
		
	
			
		
		
	
	
			15 строки
		
	
	
		
			399 B
		
	
	
	
		
			C++
		
	
#ifndef SVG_H
 | 
						|
#define SVG_H
 | 
						|
 | 
						|
#include <vector>
 | 
						|
#include <string>
 | 
						|
 | 
						|
void svg_begin(double width, double height);
 | 
						|
void svg_end();
 | 
						|
void svg_text(double left, double baseline, const std::string& text);
 | 
						|
void svg_rect(double x, double y, double width, double height,
 | 
						|
              std::string stroke = "black", std::string fill = "black");
 | 
						|
void show_histogram_svg(const std::vector<size_t>& bins);
 | 
						|
 | 
						|
#endif
 |