blob: 5ded1a412fb97df56e52f2824be9cb61d6d55efa [file] [log] [blame]
Ken Thompson21810982008-03-28 13:56:47 -07001// 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 Pike43312932008-06-27 17:06:23 -07005package math
Ken Thompson21810982008-03-28 13:56:47 -07006
Ken Thompson21810982008-03-28 13:56:47 -07007
Russ Coxdfc39102009-03-05 13:31:01 -08008// Atan returns the arc tangent of y/x, using
9// the signs of the two to determine the quadrant
10// of the return value.
11func Atan2(x, y float64) float64 {
12 // Determine the quadrant and call atan.
13 if x+y == x {
14 if x >= 0 {
Russ Cox2c8d9a52009-01-15 19:11:32 -080015 return Pi/2;
Ken Thompson21810982008-03-28 13:56:47 -070016 }
Russ Cox2c5ec1e2009-10-06 19:40:35 -070017 return -Pi / 2;
Ken Thompson21810982008-03-28 13:56:47 -070018 }
Russ Coxdfc39102009-03-05 13:31:01 -080019 q := Atan(x/y);
20 if y < 0 {
21 if q <= 0 {
Russ Cox2c5ec1e2009-10-06 19:40:35 -070022 return q+Pi;
Ken Thompson21810982008-03-28 13:56:47 -070023 }
Russ Cox2c5ec1e2009-10-06 19:40:35 -070024 return q-Pi;
Ken Thompson21810982008-03-28 13:56:47 -070025 }
Russ Coxdfc39102009-03-05 13:31:01 -080026 return q;
Ken Thompson21810982008-03-28 13:56:47 -070027}