| 1 | <?php |
||
| 9 | class SimpleMask |
||
| 10 | { |
||
| 11 | /** @var Box[] */ |
||
| 12 | protected $boundingBoxes = array(); |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param \Imagine\Image\PointInterface $position |
||
| 16 | * @param Model\Box $box |
||
| 17 | */ |
||
| 18 | 4 | public function add(PointInterface $position, Box $box) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param Box $box |
||
| 26 | * @return bool |
||
| 27 | */ |
||
| 28 | 4 | public function overlaps(Box $box) |
|
| 37 | } |
||
| 38 |