Ejemplo n.º 1
0
 public function CircleShape($x, $y, $radius, DrawingAPI $drawingAPI)
 {
     parent::Shape($drawingAPI);
     $this->x = $x;
     $this->y = $y;
     $this->radius = $radius;
 }