| 1 | <?php |
||
| 14 | class BackGroundFactory |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @param $width |
||
| 18 | * @param $height |
||
| 19 | * @param int $index |
||
| 20 | * |
||
| 21 | * @return Quad |
||
| 22 | */ |
||
| 23 | public function create($width, $height, $index = 0) |
||
| 24 | { |
||
| 25 | $index = $index % 2; |
||
| 26 | |||
| 27 | $background = Quad::create(); |
||
| 28 | $background->setSize($width, $height); |
||
| 29 | if ($index == 0) { |
||
| 30 | $background->setBackgroundColor("eee5"); |
||
| 31 | } else { |
||
| 32 | $background->setBackgroundColor("eee3"); |
||
| 33 | } |
||
| 34 | return $background; |
||
| 35 | } |
||
| 36 | } |
||
| 37 | |||
| 38 |