2022-01-20 04:26:08 +00:00
|
|
|
package clockface
|
2022-01-20 04:29:46 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"math"
|
2022-01-20 04:31:19 +00:00
|
|
|
"time"
|
2022-01-20 04:29:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Point struct {
|
|
|
|
X float64
|
|
|
|
Y float64
|
|
|
|
}
|
|
|
|
|
|
|
|
func secondsInRadians(t time.Time) float64 {
|
|
|
|
return math.Pi / (30 / (float64(t.Second())))
|
|
|
|
}
|
|
|
|
|
|
|
|
func secondHandPoint(t time.Time) Point {
|
|
|
|
angle := secondsInRadians(t)
|
|
|
|
x := math.Sin(angle)
|
|
|
|
y := math.Cos(angle)
|
|
|
|
return Point{x, y}
|
|
|
|
}
|