c09e00b189b742ed6ab7ecd1dec3f623f6f0913f
[ardour.git] / libs / pbd / cartesian.cc
1 /*
2     Copyright (C) 2010 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <iostream>
20 #include <math.h>
21
22 #include "pbd/cartesian.h"
23
24 using namespace std;
25
26 void
27 PBD::azi_ele_to_cart (double azi, double ele, double& x, double& y, double& z)
28 {
29         /* convert from cylindrical coordinates in degrees to cartesian */
30
31         static const double atorad = 2.0 * M_PI / 360.0 ;
32
33         x = cos (azi * atorad) * cos (ele * atorad);
34         y = sin (azi * atorad) * cos (ele * atorad);
35         z = sin (ele * atorad);
36 }
37
38 void 
39 PBD::cart_to_azi_ele (double x, double y, double z, double& azimuth, double& elevation)
40 {
41         /* converts cartesian coordinates to cylindrical in degrees*/
42
43         const double atorad = 2.0 * M_PI / 360.0;
44         double atan_y_per_x, atan_x_pl_y_per_z;
45         double distance;
46
47         if (x == 0.0) {
48                 atan_y_per_x = M_PI / 2;
49         } else {
50                 atan_y_per_x = atan2 (y,x);
51         }
52
53         if (y < 0.0) {
54                 /* below x-axis: atan2 returns 0 .. -PI (negative) so convert to degrees and ADD to 180 */
55                 azimuth = 180.0 + (atan_y_per_x / (M_PI/180.0) + 180.0);
56         } else {
57                 /* above x-axis: atan2 returns 0 .. +PI so convert to degrees */
58                 azimuth = atan_y_per_x / atorad;
59         }
60
61         distance = sqrt (x*x + y*y);
62
63         if (z == 0.0) {
64                 atan_x_pl_y_per_z = 0.0;
65         } else {
66                 atan_x_pl_y_per_z = atan2 (z,distance);
67         }
68
69         if (distance == 0.0) {
70                 if (z < 0.0) {
71                         atan_x_pl_y_per_z = -M_PI/2.0;
72                 } else if (z > 0.0) {
73                         atan_x_pl_y_per_z = M_PI/2.0;
74                 }
75         }
76
77         elevation = atan_x_pl_y_per_z / atorad;
78
79         // distance = sqrtf (x*x + y*y + z*z);
80 }
81