1 | <?php |
||
5 | class Exposures extends MinMaxArrayIterator implements ExposuresInterface, ExposuresProviderInterface |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @inheritDoc |
||
10 | * @return $this |
||
11 | */ |
||
12 | 12 | public function getExposures() : ExposuresInterface |
|
16 | |||
17 | /** |
||
18 | * @inheritDoc |
||
19 | */ |
||
20 | 12 | public function search( float $logH ) |
|
24 | |||
25 | |||
26 | /** |
||
27 | * @inheritDoc |
||
28 | * |
||
29 | * The range step width used here is a third of `log10(2) = 0.301...`. |
||
30 | * The numbers will most likely cleanly round to multiples of 0.1 though. |
||
31 | */ |
||
32 | public function getRange( float $step = null) : \SplFixedArray |
||
37 | |||
38 | } |
||
39 |