class Zakuro::Senmyou::Cycle::LunarRemainder

LunarRemainder 月の位相計算向け時刻情報(大余小余)

Constants

MINUTE

@return [Integer] 分(1分=100秒)

Public Class Methods

new(day: -1, minute: -1, second: -1, total: -1) click to toggle source

初期化

@param [Integer] day 大余(“日”に相当) @param [Integer] minute 小余(“分”に相当) @param [Integer] second 秒 @param [Integer] total 繰り上げなしの小余

# File lib/zakuro/version/senmyou/cycle/remainder.rb, line 49
def initialize(day: -1, minute: -1, second: -1, total: -1)
  super(base_day: Const::Number::Cycle::DAY, base_mitune: MINUTE,
        day: day, minute: minute, second: second, total: total)
end