/SolarSystem/Constants.cs
https://bitbucket.org/efouts/solarsystem · C# · 14 lines · 13 code · 1 blank · 0 comment · 0 complexity · affbd17d972635145a2c8a10c46bdf6d MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace SolarSystem
- {
- public class Constants
- {
- public static readonly Double GravitationalConstant = 6.673d * Math.Pow(10, -20); // N * km^3 / (kg * s^2)
- public const Int32 SecondsInADay = 86400;
- }
- }