示例#1
0
 public function __construct(WidgetInterface $innerWidget, $x, $y)
 {
     parent::__construct($x, $y);
     $this->innerWidget = $innerWidget;
 }
示例#2
0
 public function __construct($x, $y, $diameterH, $diameterY)
 {
     parent::__construct($x, $y);
     $this->diameterH = $diameterH;
     $this->diameterY = $diameterY;
 }
示例#3
0
 public function __construct($x, $y, $width, $height)
 {
     parent::__construct($x, $y);
     $this->width = $width;
     $this->height = $height;
 }