astro/astro.go

17 lines
303 B
Go
Raw Normal View History

2020-07-14 15:38:51 +08:00
// Package astro
2019-10-24 10:44:21 +08:00
package astro
2026-02-16 13:20:22 +08:00
import "b612.me/astro/basic"
func DeltaT() func(float64, bool) float64 {
return basic.GetDeltaTFn()
}
func SetDeltaT(deltaT func(float64, bool) float64) {
basic.SetDeltaTFn(deltaT)
}
func DefaultDeltaT() func(float64, bool) float64 {
return basic.DefaultDeltaTv2
}