Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
14 строки
365 B
C++
14 строки
365 B
C++
#ifndef SVG_H_INCLUDED
|
|
#define SVG_H_INCLUDED
|
|
#include <vector>
|
|
#include <iostream>
|
|
using namespace std;
|
|
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 = "black", string fill = "black");;
|
|
#endif // SVG_H_INCLUDED
|