| 39 | } |
| 40 | |
| 41 | float3 sphericalDegreesToCartesian(float azimuth, float elevation, float distance) |
| 42 | { |
| 43 | return sphericalToCartesian(radians(azimuth), radians(elevation), distance); |
| 44 | } |
| 45 | |
| 46 | void cartesianToSpherical(const float3& v, float& azimuth, float& elevation, float& distance) |
| 47 | { |
nothing calls this directly
no test coverage detected