1000,
'height' => 1000
);
$svg = new \SVGCreator\Elements\Svg($attributesSvg);
$complexElement = new \SVGCreator\ComplexFigures\ComplexPolygon(150, 150, 30, 5, array(
"fill" => "#6aa84f"
));
$svg->append($complexElement->getElement());
$complexElement = new \SVGCreator\ComplexFigures\ComplexPolygon(400, 400, 50, 10, array(
"fill" => "#ff0000"
));
$svg->append($complexElement->getElement());
$complexElement = new \SVGCreator\ComplexFigures\ComplexPolygon(150, 800, 40, 3, array(
"fill" => "#00ffff"
));
$svg->append($complexElement->getElement());
echo $svg->getString();
?>