Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 1 | // Copyright 2009 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
Rob Pike | 4331293 | 2008-06-27 17:06:23 -0700 | [diff] [blame] | 5 | package math |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 6 | |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 7 | |
Russ Cox | dfc3910 | 2009-03-05 13:31:01 -0800 | [diff] [blame] | 8 | // Atan returns the arc tangent of y/x, using |
| 9 | // the signs of the two to determine the quadrant |
| 10 | // of the return value. |
| 11 | func Atan2(x, y float64) float64 { |
| 12 | // Determine the quadrant and call atan. |
| 13 | if x+y == x { |
| 14 | if x >= 0 { |
Russ Cox | 2c8d9a5 | 2009-01-15 19:11:32 -0800 | [diff] [blame] | 15 | return Pi/2; |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 16 | } |
Russ Cox | 2c5ec1e | 2009-10-06 19:40:35 -0700 | [diff] [blame] | 17 | return -Pi / 2; |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 18 | } |
Russ Cox | dfc3910 | 2009-03-05 13:31:01 -0800 | [diff] [blame] | 19 | q := Atan(x/y); |
| 20 | if y < 0 { |
| 21 | if q <= 0 { |
Russ Cox | 2c5ec1e | 2009-10-06 19:40:35 -0700 | [diff] [blame] | 22 | return q+Pi; |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 23 | } |
Russ Cox | 2c5ec1e | 2009-10-06 19:40:35 -0700 | [diff] [blame] | 24 | return q-Pi; |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 25 | } |
Russ Cox | dfc3910 | 2009-03-05 13:31:01 -0800 | [diff] [blame] | 26 | return q; |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 27 | } |