1 | <?php |
||
5 | class Exposures extends ValuesIterator implements ExposuresInterface, ExposuresProviderInterface |
||
6 | { |
||
7 | |||
8 | use SearchableTrait; |
||
9 | |||
10 | public $unit = 'logH'; |
||
11 | |||
12 | /** |
||
13 | * @inheritDoc |
||
14 | * @return $this |
||
15 | */ |
||
16 | public function getExposures() : ExposuresInterface |
||
20 | |||
21 | /** |
||
22 | * @inheritDoc |
||
23 | * |
||
24 | * The range step width used here is a third of `log10(2) = 0.301...`. |
||
25 | * The numbers will most likely cleanly round to multiples of 0.1 though. |
||
26 | */ |
||
27 | 6 | public function getRange( float $step = null) : \SplFixedArray |
|
32 | |||
33 | } |
||
34 |