arc_angles.h 541 B

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