| | 1 | | using NUnit.Framework; |
| | 2 | | using UnityEngine; |
| | 3 | | using UnityEngine.TestTools; |
| | 4 | |
|
| | 5 | | public class Coordinates2Test { |
| | 6 | | private const float Epsilon = 0.0001f; |
| | 7 | |
|
| | 8 | | [Test] |
| | 9 | | public void TestCartesianToPolarOrigin() { |
| | 10 | | Vector2 cartesian = Vector2.zero; |
| | 11 | | Assert.That(Coordinates2.ConvertCartesianToPolar(cartesian).x, Is.EqualTo(0).Within(Epsilon)); |
| | 12 | | } |
| | 13 | |
|
| | 14 | | [Test] |
| | 15 | | public void TestCartesianToPolarXAxis() { |
| | 16 | | Vector2 cartesian = new Vector2(5, 0); |
| | 17 | | Vector2 expectedPolar = new Vector2(5.0f, 0.0f); |
| | 18 | | Vector2 actualPolar = Coordinates2.ConvertCartesianToPolar(cartesian); |
| | 19 | | Assert.That(actualPolar.x, Is.EqualTo(expectedPolar.x).Within(Epsilon)); |
| | 20 | | Assert.That(actualPolar.y, Is.EqualTo(expectedPolar.y).Within(Epsilon)); |
| | 21 | | } |
| | 22 | |
|
| | 23 | | [Test] |
| | 24 | | public void TestCartesianToPolarYAxis() { |
| | 25 | | Vector2 cartesian = new Vector2(0, 5); |
| | 26 | | Vector2 expectedPolar = new Vector2(5.0f, 90.0f); |
| | 27 | | Vector2 actualPolar = Coordinates2.ConvertCartesianToPolar(cartesian); |
| | 28 | | Assert.That(actualPolar.x, Is.EqualTo(expectedPolar.x).Within(Epsilon)); |
| | 29 | | Assert.That(actualPolar.y, Is.EqualTo(expectedPolar.y).Within(Epsilon)); |
| | 30 | | } |
| | 31 | |
|
| | 32 | | [Test] |
| | 33 | | public void TestPolarToCartesianOrigin() { |
| | 34 | | Vector2 expectedCartesian = Vector2.zero; |
| | 35 | | Vector2[] polarInputs = new[] { new Vector2(0, 0), new Vector2(0, 45), new Vector2(0, 90), |
| | 36 | | new Vector2(0, 180), new Vector2(0, 360) }; |
| | 37 | |
|
| | 38 | | foreach (var polar in polarInputs) { |
| | 39 | | Vector2 actualCartesian = Coordinates2.ConvertPolarToCartesian(polar); |
| | 40 | | Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon)); |
| | 41 | | Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon)); |
| | 42 | | } |
| | 43 | | } |
| | 44 | |
|
| | 45 | | [Test] |
| | 46 | | public void TestPolarToCartesianXAxis() { |
| | 47 | | Vector2 polar = new Vector2(10, 0); |
| | 48 | | Vector2 expectedCartesian = new Vector2(10.0f, 0.0f); |
| | 49 | | Vector2 actualCartesian = Coordinates2.ConvertPolarToCartesian(polar); |
| | 50 | | Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon)); |
| | 51 | | Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon)); |
| | 52 | | } |
| | 53 | |
|
| | 54 | | [Test] |
| | 55 | | public void TestPolarToCartesianYAxis() { |
| | 56 | | Vector2 polar = new Vector2(10, 90); |
| | 57 | | Vector2 expectedCartesian = new Vector2(0.0f, 10.0f); |
| | 58 | | Vector2 actualCartesian = Coordinates2.ConvertPolarToCartesian(polar); |
| | 59 | | Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon)); |
| | 60 | | Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon)); |
| | 61 | | } |
| | 62 | |
|
| | 63 | | [Test] |
| | 64 | | public void TestPolarToCartesian30() { |
| | 65 | | Vector2 polar = new Vector2(20, 30); |
| | 66 | | Vector2 expectedCartesian = new Vector2(10 * Mathf.Sqrt(3), 10); |
| | 67 | | Vector2 actualCartesian = Coordinates2.ConvertPolarToCartesian(polar); |
| | 68 | | Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon)); |
| | 69 | | Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon)); |
| | 70 | | } |
| | 71 | |
|
| | 72 | | [Test] |
| | 73 | | public void TestPolarToCartesian45() { |
| | 74 | | Vector2 polar = new Vector2(10 * Mathf.Sqrt(2), 45); |
| | 75 | | Vector2 expectedCartesian = new Vector2(10.0f, 10.0f); |
| | 76 | | Vector2 actualCartesian = Coordinates2.ConvertPolarToCartesian(polar); |
| | 77 | | Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon)); |
| | 78 | | Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon)); |
| | 79 | | } |
| | 80 | | } |
| | 81 | |
|
| | 82 | | public class Coordinates3Test { |
| | 83 | | private const float Epsilon = 0.0001f; |
| | 84 | |
|
| | 85 | | [Test] |
| 1 | 86 | | public void TestCartesianToSphericalOrigin() { |
| 1 | 87 | | Vector3 cartesian = Vector3.zero; |
| 1 | 88 | | Assert.That(Coordinates3.ConvertCartesianToSpherical(cartesian).x, |
| | 89 | | Is.EqualTo(0).Within(Epsilon)); |
| 1 | 90 | | } |
| | 91 | |
|
| | 92 | | [Test] |
| 1 | 93 | | public void TestCartesianToSpherical() { |
| 1 | 94 | | Vector3 cartesian = new Vector3(2, -1, 3); |
| 1 | 95 | | Vector3 expectedSpherical = new Vector3(Mathf.Sqrt(14), 33.690068f, -15.501360f); |
| 1 | 96 | | Vector3 actualSpherical = Coordinates3.ConvertCartesianToSpherical(cartesian); |
| 1 | 97 | | Assert.That(actualSpherical.x, Is.EqualTo(expectedSpherical.x).Within(Epsilon)); |
| 1 | 98 | | Assert.That(actualSpherical.y, Is.EqualTo(expectedSpherical.y).Within(Epsilon)); |
| 1 | 99 | | Assert.That(actualSpherical.z, Is.EqualTo(expectedSpherical.z).Within(Epsilon)); |
| 1 | 100 | | } |
| | 101 | |
|
| | 102 | | [Test] |
| 1 | 103 | | public void TestSphericalToCartesianOrigin() { |
| 1 | 104 | | Vector3 spherical = new Vector3(0, 45, 90); |
| 1 | 105 | | Vector3 expectedCartesian = Vector3.zero; |
| 1 | 106 | | Vector3 actualCartesian = Coordinates3.ConvertSphericalToCartesian(spherical); |
| 1 | 107 | | Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon)); |
| 1 | 108 | | Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon)); |
| 1 | 109 | | Assert.That(actualCartesian.z, Is.EqualTo(expectedCartesian.z).Within(Epsilon)); |
| 1 | 110 | | } |
| | 111 | |
|
| | 112 | | [Test] |
| 1 | 113 | | public void TestSphericalToCartesian() { |
| 1 | 114 | | Vector3 spherical = new Vector3(10, 60, 30); |
| 1 | 115 | | Vector3 expectedCartesian = new Vector3(7.5f, 5.0f, 4.3301270189221945f); |
| 1 | 116 | | Vector3 actualCartesian = Coordinates3.ConvertSphericalToCartesian(spherical); |
| 1 | 117 | | Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon)); |
| 1 | 118 | | Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon)); |
| 1 | 119 | | Assert.That(actualCartesian.z, Is.EqualTo(expectedCartesian.z).Within(Epsilon)); |
| 1 | 120 | | } |
| | 121 | | } |