/SolarSystem/Constants.cs

https://bitbucket.org/efouts/solarsystem · C# · 14 lines · 13 code · 1 blank · 0 comment · 0 complexity · affbd17d972635145a2c8a10c46bdf6d MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SolarSystem
  7. {
  8. public class Constants
  9. {
  10. public static readonly Double GravitationalConstant = 6.673d * Math.Pow(10, -20); // N * km^3 / (kg * s^2)
  11. public const Int32 SecondsInADay = 86400;
  12. }
  13. }