(theta, phi)
| 1177 | |
| 1178 | |
| 1179 | def _sph2cart(theta, phi): |
| 1180 | x = np.cos(theta) * np.sin(phi) |
| 1181 | y = np.sin(theta) * np.sin(phi) |
| 1182 | z = np.cos(phi) |
| 1183 | return x, y, z |
| 1184 | |
| 1185 | |
| 1186 | def _azimuth2math(azimuth, elevation): |
no outgoing calls
no test coverage detected
searching dependent graphs…