diff options
Diffstat (limited to 'src/pkg/math/sin.go')
| -rw-r--r-- | src/pkg/math/sin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/math/sin.go b/src/pkg/math/sin.go index adff067c24..70b7218c96 100644 --- a/src/pkg/math/sin.go +++ b/src/pkg/math/sin.go @@ -45,7 +45,7 @@ func sinus(x float64, quad int) float64 { yy := y * y; temp1 := ((((P4*yy+P3)*yy+P2)*yy+P1)*yy + P0) * y; - temp2 := ((((yy+Q3)*yy+Q2)*yy + Q1) * yy + Q0); + temp2 := ((((yy+Q3)*yy+Q2)*yy+Q1)*yy + Q0); return temp1 / temp2; } |
