| | 1 | | using UnityEngine; |
| | 2 | |
|
| | 3 | | // Utility functions for 2D coordinates. |
| | 4 | | // In Cartesian coordinates, the x-axis points right, and the y-axis points up. The coordinates are |
| | 5 | | // given by (x, y). |
| | 6 | | // In polar coordinates, the angle is measured in degrees from the x-axis counterclockwise to the |
| | 7 | | // y-axis. The coordinates are given by (r, theta). |
| | 8 | | public class Coordinates2 { |
| | 9 | | public static Vector2 ConvertCartesianToPolar(in Vector2 cartesian) { |
| | 10 | | float r = cartesian.magnitude; |
| | 11 | | float theta = Mathf.Atan2(cartesian.y, cartesian.x) * Mathf.Rad2Deg; |
| | 12 | | return new Vector2(r, theta); |
| | 13 | | } |
| | 14 | | public static Vector2 ConvertCartesianToPolar(float x, float y) { |
| | 15 | | return ConvertCartesianToPolar(new Vector2(x, y)); |
| | 16 | | } |
| | 17 | |
|
| | 18 | | public static Vector2 ConvertPolarToCartesian(in Vector2 polar) { |
| | 19 | | float x = polar.x * Mathf.Cos(polar.y * Mathf.Deg2Rad); |
| | 20 | | float y = polar.x * Mathf.Sin(polar.y * Mathf.Deg2Rad); |
| | 21 | | return new Vector2(x, y); |
| | 22 | | } |
| | 23 | | public static Vector2 ConvertPolarToCartesian(float r, float theta) { |
| | 24 | | return ConvertPolarToCartesian(new Vector2(r, theta)); |
| | 25 | | } |
| | 26 | | } |
| | 27 | |
|
| | 28 | | // Utility functions for 3D coordinates. |
| | 29 | | // In Cartesian coordinates, the x-axis points right, the y-axis points up, and the z-axis points |
| | 30 | | // forward. The coordinates are given by (x, y, z). |
| | 31 | | // In spherical coordinates, the azimuth is measured in degrees from the x-axis clockwise to the |
| | 32 | | // z-axis, and elevation is measured in degrees from the x-z plane up to the y-axis. The coordinates |
| | 33 | | // are given by (r, azimuth, elevation). |
| | 34 | | public class Coordinates3 { |
| 2 | 35 | | public static Vector3 ConvertCartesianToSpherical(in Vector3 cartesian) { |
| 2 | 36 | | float r = cartesian.magnitude; |
| 2 | 37 | | float azimuth = Mathf.Atan2(cartesian.x, cartesian.z) * Mathf.Rad2Deg; |
| 2 | 38 | | float elevation = Mathf.Atan(cartesian.y / Mathf.Sqrt(cartesian.x * cartesian.x + |
| | 39 | | cartesian.z * cartesian.z)) * |
| | 40 | | Mathf.Rad2Deg; |
| 2 | 41 | | return new Vector3(r, azimuth, elevation); |
| 2 | 42 | | } |
| 0 | 43 | | public static Vector3 ConvertCartesianToSpherical(float x, float y, float z) { |
| 0 | 44 | | return ConvertCartesianToSpherical(new Vector3(x, y, z)); |
| 0 | 45 | | } |
| | 46 | |
|
| 2 | 47 | | public static Vector3 ConvertSphericalToCartesian(in Vector3 spherical) { |
| 2 | 48 | | float y = spherical.x * Mathf.Sin(spherical.z * Mathf.Deg2Rad); |
| 2 | 49 | | float x = spherical.x * Mathf.Cos(spherical.z * Mathf.Deg2Rad) * |
| | 50 | | Mathf.Sin(spherical.y * Mathf.Deg2Rad); |
| 2 | 51 | | float z = spherical.x * Mathf.Cos(spherical.z * Mathf.Deg2Rad) * |
| | 52 | | Mathf.Cos(spherical.y * Mathf.Deg2Rad); |
| 2 | 53 | | return new Vector3(x, y, z); |
| 2 | 54 | | } |
| 0 | 55 | | public static Vector3 ConvertSphericalToCartesian(float r, float azimuth, float elevation) { |
| 0 | 56 | | return ConvertSphericalToCartesian(new Vector3(r, azimuth, elevation)); |
| 0 | 57 | | } |
| | 58 | | } |