コード例 #1
0
ファイル: binary_test.go プロジェクト: soniakeys/meeus
func ExampleApparentEccentricity() {
	// Example 57.b, p. 400
	fmt.Printf("%.3f\n", binary.ApparentEccentricity(.2763,
		unit.AngleFromDeg(59.025), unit.AngleFromDeg(219.907)))
	// Output:
	// 0.860
}
コード例 #2
0
ファイル: binary_test.go プロジェクト: thecc4re/meeus
func ExampleApparentEccentricity() {
	// Example 57.b, p. 400
	fmt.Printf("%.3f\n", binary.ApparentEccentricity(.2763,
		59.025*math.Pi/180, 219.907*math.Pi/180))
	// Output:
	// 0.860
}