コード例 #1
0
ファイル: GenDate.cs プロジェクト: ehtnnd/RW-Decompile
        public static Season Season(long absTicks, float latitude, float longitude)
        {
            float yearPct = GenDate.YearPercent(absTicks, longitude);

            return(SeasonUtility.GetReportedSeason(yearPct, latitude));
        }
コード例 #2
0
 public static Season Season(long absTicks, float latitude, float longitude)
 {
     return(SeasonUtility.GetReportedSeason(YearPercent(absTicks, longitude), latitude));
 }
コード例 #3
0
        public static Season GetSeason(this Quadrum q, float latitude)
        {
            float middleYearPct = q.GetMiddleYearPct();

            return(SeasonUtility.GetReportedSeason(middleYearPct, latitude));
        }