| 123456789101112131415161718 |
- /*
- This file is part of Telegram Desktop,
- the official desktop application for the Telegram messaging service.
- For license and copyright information please follow this link:
- https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
- */
- #pragma once
- namespace arc {
- constexpr auto kFullLength = 360 * 16;
- constexpr auto kHalfLength = (kFullLength / 2);
- constexpr auto kQuarterLength = (kFullLength / 4);
- constexpr auto kMinLength = (kFullLength / 360);
- constexpr auto kAlmostFullLength = (kFullLength - kMinLength);
- } // namespace arc
|