| 1 | <?php |
||
| 8 | abstract class DevelopingAbstract implements DevelopingInterface |
||
| 9 | { |
||
| 10 | |||
| 11 | use ZonesAwareTrait, |
||
| 12 | DensitiesAwareTrait; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var integer |
||
| 16 | */ |
||
| 17 | public $time = null; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var float |
||
| 21 | */ |
||
| 22 | public $n_deviation = null; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var float |
||
| 26 | */ |
||
| 27 | public $speed_offset = null; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var float |
||
| 31 | */ |
||
| 32 | public $gamma = null; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var float |
||
| 36 | */ |
||
| 37 | public $beta = null; |
||
| 38 | |||
| 39 | |||
| 40 | |||
| 41 | /** |
||
| 42 | * @inherit |
||
| 43 | * @implements DevelopingInterface |
||
| 44 | */ |
||
| 45 | public function getNDeviation() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @inherit |
||
| 52 | * @implements DevelopingInterface |
||
| 53 | */ |
||
| 54 | public function getSpeedOffset() |
||
| 58 | |||
| 59 | |||
| 60 | /** |
||
| 61 | * @inherit |
||
| 62 | * @implements DevelopingInterface |
||
| 63 | */ |
||
| 64 | public function getGammaContrast() |
||
| 68 | |||
| 69 | |||
| 70 | /** |
||
| 71 | * @inherit |
||
| 72 | * @implements DevelopingInterface |
||
| 73 | */ |
||
| 74 | public function getBetaContrast() |
||
| 78 | |||
| 79 | |||
| 80 | /** |
||
| 81 | * @return string |
||
| 82 | */ |
||
| 83 | public function getDevelopingType() |
||
| 94 | |||
| 95 | |||
| 96 | /** |
||
| 97 | * @inherit |
||
| 98 | * @implements DevelopingInterface |
||
| 99 | */ |
||
| 100 | public function getTime() |
||
| 104 | |||
| 105 | |||
| 106 | |||
| 107 | /** |
||
| 108 | * @param int $time |
||
| 109 | */ |
||
| 110 | public function setTime( $time ) |
||
| 115 | |||
| 116 | } |
||
| 117 |