コード例 #1
0
 public function __construct($root = false, $width = "100%", $height = "100%")
 {
     parent::__construct();
     $this->root = !!$root;
     $this->width = $width;
     $this->height = $height;
     foreach (self::$INITIAL_STYLES as $style => $value) {
         $this->setStyle($style, $value);
     }
 }
コード例 #2
0
ファイル: SVGGroup.php プロジェクト: ilya3d/php-svg
 public function __construct()
 {
     parent::__construct();
 }