Example #1
0
func ExampleVenus() {
	// Example 41.c, p. 285
	v := illum.Venus(.724604, .910947, unit.AngleFromDeg(72.96))
	fmt.Printf("%.1f\n", v)
	// Output:
	// -3.8
}
Example #2
0
func ExampleVenus() {
	// Example 41.c, p. 285
	v := illum.Venus(.724604, .910947, 72.96*math.Pi/180)
	fmt.Printf("%.1f\n", v)
	// Output:
	// -3.8
}