Molybden API
Loading...
Searching...
No Matches
zoom_level.hpp
1// Copyright (c) 2000-2024 TeamDev. 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 = 1.00;
22static const ZoomLevel k110 = 1.10;
23static const ZoomLevel k125 = 1.25;
24static const ZoomLevel k150 = 1.50;
25static const ZoomLevel k175 = 1.75;
26static const ZoomLevel k200 = 2.00;
27static const ZoomLevel k250 = 2.50;
28static const ZoomLevel k300 = 3.00;
29static const ZoomLevel k400 = 4.00;
30static const ZoomLevel k500 = 5.00;
31
32} // namespace molybden
33#endif // MOLYBDEN_ZOOM_LEVEL_HPP