Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
AngleType | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | /** |
3 | * Jingga |
4 | * |
5 | * PHP Version 8.1 |
6 | * |
7 | * @package phpOMS\Utils\Converter |
8 | * @copyright Dennis Eichhorn |
9 | * @license OMS License 2.0 |
10 | * @version 1.0.0 |
11 | * @link https://jingga.app |
12 | */ |
13 | declare(strict_types=1); |
14 | |
15 | namespace phpOMS\Utils\Converter; |
16 | |
17 | use phpOMS\Stdlib\Base\Enum; |
18 | |
19 | /** |
20 | * Angle type enum. |
21 | * |
22 | * @package phpOMS\Utils\Converter |
23 | * @license OMS License 2.0 |
24 | * @link https://jingga.app |
25 | * @since 1.0.0 |
26 | */ |
27 | abstract class AngleType extends Enum |
28 | { |
29 | public const DEGREE = 'deg'; |
30 | |
31 | public const RADIAN = 'rad'; |
32 | |
33 | public const SECOND = 'arcsec'; |
34 | |
35 | public const MINUTE = 'arcmin'; |
36 | |
37 | public const MILLIRADIAN_US = 'mil (us ww2)'; |
38 | |
39 | public const MILLIRADIAN_UK = 'mil (uk)'; |
40 | |
41 | public const MILLIRADIAN_USSR = 'mil (ussr)'; |
42 | |
43 | public const MILLIRADIAN_NATO = 'mil (nato)'; |
44 | |
45 | public const GRADIAN = 'g'; |
46 | |
47 | public const CENTRAD = 'crad'; |
48 | } |