var _sin … var _cos … // Cos returns the cosine of the radian argument x. // // Special cases are: // // Cos(±Inf) = NaN // Cos(NaN) = NaN func Cos(x float64) float64 { … } func cos(x float64) float64 { … } // Sin returns the sine of the radian argument x. // // Special cases are: // // Sin(±0) = ±0 // Sin(±Inf) = NaN // Sin(NaN) = NaN func Sin(x float64) float64 { … } func sin(x float64) float64 { … }