mirror of
https://github.com/moodle/moodle.git
synced 2025-07-25 08:11:39 +02:00
17 lines
380 B
PHP
17 lines
380 B
PHP
<?php namespace RedeyeVentures\GeoPattern\SVGElements;
|
|
|
|
class Rectangle extends Base
|
|
{
|
|
protected $tag = 'rect';
|
|
|
|
function __construct($x, $y, $width, $height, $args=array())
|
|
{
|
|
$this->elements = [
|
|
'x' => $x,
|
|
'y' => $y,
|
|
'width' => $width,
|
|
'height' => $height,
|
|
];
|
|
parent::__construct($args);
|
|
}
|
|
} |