Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php namespace RedeyeVentures\GeoPattern\SVGElements;
2
 
3
class Rectangle extends Base
4
{
5
    protected $tag = 'rect';
6
 
7
    function __construct($x, $y, $width, $height, $args=array())
8
    {
9
        $this->elements = [
10
            'x' => $x,
11
            'y' => $y,
12
            'width' => $width,
13
            'height' => $height,
14
        ];
15
        parent::__construct($args);
16
    }
17
}