Exemplo n.º 1
0
        public static void TestConjunctions()
        {
            Log("== start test conjunctions ==");

            double date = 2451919.500000;

            for (int i = 0; i < 30; i++)
            {
                date = GPAstroEngine.FindNextConjunction(date);
                Log("Conjunction at: {0}", date);
                if (date < 0)
                {
                    break;
                }
                date += 20;
            }
            Log("== end test conjunctions ==");
        }