1 | <?php namespace Arcanedev\Units\Measures; |
||
13 | class Distance extends UnitMeasure implements DistanceContract |
||
14 | { |
||
15 | /* ------------------------------------------------------------------------------------------------ |
||
16 | | Traits |
||
17 | | ------------------------------------------------------------------------------------------------ |
||
18 | */ |
||
19 | use Calculatable; |
||
20 | |||
21 | /* ------------------------------------------------------------------------------------------------ |
||
22 | | Constructor |
||
23 | | ------------------------------------------------------------------------------------------------ |
||
24 | */ |
||
25 | /** |
||
26 | * Distance constructor. |
||
27 | * |
||
28 | * @param float|int $value |
||
29 | * @param string $unit |
||
30 | * @param array $options |
||
31 | */ |
||
32 | public function __construct($value = 0, $unit = self::M, array $options = []) |
||
36 | 176 | ||
37 | 176 | /* ------------------------------------------------------------------------------------------------ |
|
38 | 176 | | Getters & Setters |
|
39 | 176 | | ------------------------------------------------------------------------------------------------ |
|
40 | 176 | */ |
|
41 | 176 | /** |
|
42 | 132 | * Get the default names. |
|
43 | 176 | * |
|
44 | * @return array |
||
45 | */ |
||
46 | public function defaultNames() |
||
58 | 6 | ||
59 | 6 | /* ------------------------------------------------------------------------------------------------ |
|
60 | 6 | | Main Functions |
|
61 | 6 | | ------------------------------------------------------------------------------------------------ |
|
62 | 6 | */ |
|
63 | 6 | /** |
|
64 | 6 | * Make a distance instance. |
|
65 | * |
||
66 | * @param float|int $value |
||
67 | * @param string $unit |
||
68 | * @param array $options |
||
69 | * |
||
70 | * @return static |
||
71 | */ |
||
72 | public static function make($value = 0, $unit = self::M, array $options = []) |
||
76 | 8 | ||
77 | /** |
||
78 | 8 | * Convert the distance to the given unit. |
|
79 | * |
||
80 | * @param string $to |
||
81 | * |
||
82 | * @return \Arcanedev\Units\Contracts\UnitMeasure |
||
83 | */ |
||
84 | public function to($to) |
||
100 | |||
101 | /** |
||
102 | * Convert the distance. |
||
103 | * |
||
104 | * @param string $from |
||
105 | * @param string $to |
||
106 | 72 | * @param float|int $value |
|
107 | * |
||
108 | 72 | * @return float|int |
|
109 | */ |
||
110 | 24 | public static function convert($from, $to, $value) |
|
114 | |||
115 | /* ------------------------------------------------------------------------------------------------ |
||
116 | | Calculation Functions |
||
117 | | ------------------------------------------------------------------------------------------------ |
||
118 | */ |
||
119 | /** |
||
120 | * Add the distance. |
||
121 | * |
||
122 | * @param float|int $value |
||
123 | * @param string $unit |
||
124 | 24 | * |
|
125 | * @return \Arcanedev\Units\Contracts\Measures\Distance |
||
126 | 24 | */ |
|
127 | public function addDistance($value, $unit = self::M) |
||
133 | |||
134 | /** |
||
135 | * Sub the distance. |
||
136 | * |
||
137 | * @param float|int $value |
||
138 | * @param string $unit |
||
139 | * |
||
140 | * @return \Arcanedev\Units\Contracts\Measures\Distance |
||
141 | 16 | */ |
|
142 | public function subDistance($value, $unit = self::M) |
||
148 | |||
149 | /* ------------------------------------------------------------------------------------------------ |
||
150 | | Other Functions |
||
151 | | ------------------------------------------------------------------------------------------------ |
||
152 | */ |
||
153 | /** |
||
154 | * Get the distance convert ratio. |
||
155 | * |
||
156 | 16 | * @param string $to |
|
157 | * @param string $from |
||
158 | 16 | * |
|
159 | 16 | * @return float|int |
|
160 | 12 | */ |
|
161 | protected static function getRatio($to, $from) |
||
172 | |||
173 | /** |
||
174 | * Get all the distance ratios. |
||
175 | 24 | * |
|
176 | * @return array |
||
177 | 24 | */ |
|
178 | 24 | protected static function getRatios() |
|
195 | } |
||
196 |