Molybden API
Loading...
Searching...
No Matches
zoom_level.hpp
1// Copyright (c) 2000-2023 TeamDev Ltd. All rights reserved.
2// TeamDev PROPRIETARY and CONFIDENTIAL.
3// Use is subject to license terms.
4
5#ifndef MOLYBDEN_ZOOM_LEVEL_HPP
6#define MOLYBDEN_ZOOM_LEVEL_HPP
7
8namespace molybden {
12using ZoomLevel = double;
13
14static const ZoomLevel k25 = 0.25;
15static const ZoomLevel k33 = 0.33;
16static const ZoomLevel k50 = 0.50;
17static const ZoomLevel k67 = 0.67;
18static const ZoomLevel k75 = 0.75;
19static const ZoomLevel k80 = 0.80;
20static const ZoomLevel k90 = 0.90;
21static const ZoomLevel k100 = 0.100;
22static const ZoomLevel k110 = 0.110;
23static const ZoomLevel k125 = 0.125;
24static const ZoomLevel k150 = 0.150;
25static const ZoomLevel k175 = 0.175;
26static const ZoomLevel k200 = 0.200;
27static const ZoomLevel k250 = 0.250;
28static const ZoomLevel k300 = 0.300;
29static const ZoomLevel k400 = 0.400;
30static const ZoomLevel k500 = 0.500;
31} // namespace molybden
32#endif // MOLYBDEN_ZOOM_LEVEL_HPP