/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/LightSwitch/LightSwitchService/ThemeScheduler.h
25 строк
512 B
Jaylyn Barbee
[New Module] Light Switch (#41987)
06 окт 2025, 23:44
Не верифицирован
06 окт 2025, 23:44
0d52205
Код
Авторство
О чём код?
#pragma once #include <cmath> #include <ctime> #include <windows.h> // Struct to hold calculated sunrise/sunset times struct SunTimes { int sunriseHour; int sunriseMinute; int sunsetHour; int sunsetMinute; }; constexpr double PI = 3.14159265358979323846; constexpr double deg2rad(double deg) { return deg * PI / 180.0; } constexpr double rad2deg(double rad) { return rad * 180.0 / PI; } SunTimes CalculateSunriseSunset(double latitude, double longitude, int year, int month, int day);