uawdijnntqw1x1x1
IP : 216.73.216.26
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
.
/
vendor
/
phenx
/
php-svg-lib
/
src
/
Svg
/
Tag
/
Circle.php
/
/
<?php /** * @package php-svg-lib * @link http://github.com/PhenX/php-svg-lib * @author Fabien Ménager <fabien.menager@gmail.com> * @license GNU LGPLv3+ http://www.gnu.org/copyleft/lesser.html */ namespace Svg\Tag; use Svg\Style; class Circle extends Shape { protected $cx = 0; protected $cy = 0; protected $r; public function start($attributes) { if (isset($attributes['cx'])) { $width = $this->document->getWidth(); $this->cx = $this->convertSize($attributes['cx'], $width); } if (isset($attributes['cy'])) { $height = $this->document->getHeight(); $this->cy = $this->convertSize($attributes['cy'], $height); } if (isset($attributes['r'])) { $diagonal = $this->document->getDiagonal(); $this->r = $this->convertSize($attributes['r'], $diagonal); } $this->document->getSurface()->circle($this->cx, $this->cy, $this->r); } }
/srv/users/craft4/apps/craft4-newsite-space/./vendor/phenx/php-svg-lib/src/Svg/Tag/Circle.php