FbxVector4Test.cs 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. // ***********************************************************************
  2. // Copyright (c) 2017 Unity Technologies. All rights reserved.
  3. //
  4. // Licensed under the ##LICENSENAME##.
  5. // See LICENSE.md file in the project root for full license information.
  6. // ***********************************************************************
  7. using NUnit.Framework;
  8. using Autodesk.Fbx;
  9. using System.Collections.Generic;
  10. namespace Autodesk.Fbx.UnitTests
  11. {
  12. public class FbxVector4Test
  13. {
  14. #if ENABLE_COVERAGE_TEST
  15. static FbxVector4Test()
  16. {
  17. var lambdaCaller = typeof(FbxVector4Test).GetMethod("MatchingTests");
  18. CppMatchingHelper.RegisterLambdaCalls(lambdaCaller, s_commands);
  19. }
  20. [Test]
  21. public void TestCoverage() {
  22. CoverageTester.TestCoverage(typeof(FbxVector4), this.GetType());
  23. }
  24. #endif
  25. [Test]
  26. public void TestEquality()
  27. {
  28. EqualityTester<FbxVector4>.TestEquality(
  29. new FbxVector4(0, 1, 2, 3),
  30. new FbxVector4(3, 2, 1, 0),
  31. new FbxVector4(0, 1, 2, 3));
  32. }
  33. /// <summary>
  34. /// Check that two vectors are similar, interpreting them as 4-tuples
  35. /// of doubles.
  36. ///
  37. /// Pass 'nothrow' as true if you want a bool yes/no. By default we
  38. /// throw an NUnit exception if the vectors don't match.
  39. /// </summary>
  40. public static bool AssertSimilarXYZW(FbxVector4 expected, FbxVector4 actual,
  41. double tolerance = 1e-10, bool nothrow = false)
  42. {
  43. if (System.Math.Abs(expected.X - actual.X) <= tolerance &&
  44. System.Math.Abs(expected.Y - actual.Y) <= tolerance &&
  45. System.Math.Abs(expected.Z - actual.Z) <= tolerance &&
  46. System.Math.Abs(expected.Z - actual.Z) <= tolerance) {
  47. return true;
  48. }
  49. if (!nothrow) {
  50. Assert.AreEqual(expected, actual);
  51. }
  52. return false;
  53. }
  54. /// <summary>
  55. /// Check that two vectors are similar, interpreting them as XYZ
  56. /// vectors (ignoring W).
  57. ///
  58. /// Pass 'nothrow' as true if you want a bool yes/no. By default we
  59. /// throw an NUnit exception if the vectors don't match.
  60. /// </summary>
  61. public static bool AssertSimilarXYZ(FbxVector4 expected, FbxVector4 actual,
  62. double tolerance = 1e-10, bool nothrow = false)
  63. {
  64. if (System.Math.Abs(expected.X - actual.X) <= tolerance &&
  65. System.Math.Abs(expected.Y - actual.Y) <= tolerance &&
  66. System.Math.Abs(expected.Z - actual.Z) <= tolerance) {
  67. return true;
  68. }
  69. if (!nothrow) {
  70. Assert.AreEqual(expected, actual);
  71. }
  72. return false;
  73. }
  74. /// <summary>
  75. /// Check that two vectors are similar, interpreting them as XYZ euler angles,
  76. /// ignoring W.
  77. ///
  78. /// Pass 'nothrow' as true if you want a bool yes/no. By default we
  79. /// throw an NUnit exception if the vectors don't match.
  80. /// </summary>
  81. public static bool AssertSimilarEuler(FbxVector4 expected, FbxVector4 actual,
  82. double tolerance = 1e-10, bool nothrow = false)
  83. {
  84. if (expected == actual) {
  85. return true;
  86. }
  87. var q1 = new FbxQuaternion(); q1.ComposeSphericalXYZ(expected);
  88. var q2 = new FbxQuaternion(); q2.ComposeSphericalXYZ(actual);
  89. // Check if the quaternions match.
  90. if (FbxQuaternionTest.AssertSimilar(q1, q2, System.Math.Sqrt(tolerance), nothrow: true)) {
  91. return true;
  92. }
  93. if (!nothrow) {
  94. Assert.AreEqual(expected, actual, "Quaternions don't match: " + q1 + " versus " + q2);
  95. }
  96. return false;
  97. }
  98. [Test]
  99. public void BasicTests ()
  100. {
  101. FbxVector4 v;
  102. // make sure the no-arg constructor doesn't crash
  103. new FbxVector4();
  104. // Test other constructors
  105. v = new FbxVector4(1, 2, 3, 4);
  106. var u = new FbxVector4(v);
  107. Assert.AreEqual(v, u);
  108. u[0] = 5;
  109. Assert.AreEqual(5, u[0]);
  110. Assert.AreEqual(1, v[0]); // check that setting u doesn't set v
  111. v = new FbxVector4(1, 2, 3);
  112. Assert.AreEqual(1, v[3]); // w is assumed to be a homogenous coordinate
  113. v = new FbxVector4(new FbxDouble3(1, 2, 3));
  114. Assert.AreEqual(1, v[3]); // w is assumed to be a homogenous coordinate
  115. Assert.AreEqual(1, v[0]);
  116. Assert.AreEqual(2, v[1]);
  117. Assert.AreEqual(3, v[2]);
  118. // Test operator[]
  119. v = new FbxVector4();
  120. v[0] = 1;
  121. Assert.AreEqual(1, v[0]);
  122. v[1] = 2;
  123. Assert.AreEqual(2, v[1]);
  124. v[2] = 3;
  125. Assert.AreEqual(3, v[2]);
  126. v[3] = 4;
  127. Assert.AreEqual(4, v[3]);
  128. Assert.That(() => v[-1], Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  129. Assert.That(() => v[ 4], Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  130. Assert.That(() => v[-1] = 5, Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  131. Assert.That(() => v[ 4] = 5, Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  132. // Test 4-argument constructor and members X/Y/Z/W
  133. v = new FbxVector4(1, 2, 3, 4);
  134. Assert.AreEqual(1, v.X);
  135. Assert.AreEqual(2, v.Y);
  136. Assert.AreEqual(3, v.Z);
  137. Assert.AreEqual(4, v.W);
  138. v.X = 3;
  139. v.Y = 4;
  140. v.Z = 5;
  141. v.W = 6;
  142. Assert.AreEqual(3, v.X);
  143. Assert.AreEqual(4, v.Y);
  144. Assert.AreEqual(5, v.Z);
  145. Assert.AreEqual(6, v.W);
  146. // Test that we can scale by a scalar.
  147. // This isn't covered below because this isn't legal in C++
  148. // (at least in FBX SDK 2017.1)
  149. u = 5 * v;
  150. Assert.AreEqual(5 * v.X, u.X);
  151. Assert.AreEqual(5 * v.Y, u.Y);
  152. Assert.AreEqual(5 * v.Z, u.Z);
  153. Assert.AreEqual(5 * v.W, u.W);
  154. }
  155. ///////////////////////////////////////////////////////////////////////////
  156. // Test that our results match the C++.
  157. ///////////////////////////////////////////////////////////////////////////
  158. static FbxVector4 Vector(double d) { return new FbxVector4(d,d,d,d); }
  159. static FbxVector4 Vector(double [] d) {
  160. if (d.Length == 1) { return Vector(d[0]); }
  161. else {
  162. Assert.AreEqual(4, d.Length);
  163. return new FbxVector4(d[0],d[1],d[2],d[3]);
  164. }
  165. }
  166. static Dictionary<string, CppMatchingHelper.TestCommand<FbxVector4>> s_commands = new Dictionary<string, CppMatchingHelper.TestCommand<FbxVector4>> {
  167. { "-a", (FbxVector4 a, FbxVector4 b) => { return -a; } },
  168. { "a + 2", (FbxVector4 a, FbxVector4 b) => { return a + 2; } },
  169. { "a - 2", (FbxVector4 a, FbxVector4 b) => { return a - 2; } },
  170. { "a * 2", (FbxVector4 a, FbxVector4 b) => { return a * 2; } },
  171. { "a / 2", (FbxVector4 a, FbxVector4 b) => { return a / 2; } },
  172. { "a + b", (FbxVector4 a, FbxVector4 b) => { return a + b; } },
  173. { "a - b", (FbxVector4 a, FbxVector4 b) => { return a - b; } },
  174. { "a * b", (FbxVector4 a, FbxVector4 b) => { return a * b; } },
  175. { "a / b", (FbxVector4 a, FbxVector4 b) => { return a / b; } },
  176. { "a.Length()", (FbxVector4 a, FbxVector4 b) => { return Vector(a.Length()); } },
  177. { "a.SquareLength()", (FbxVector4 a, FbxVector4 b) => { return Vector(a.SquareLength()); } },
  178. { "a.DotProduct(b)", (FbxVector4 a, FbxVector4 b) => { return Vector(a.DotProduct(b)); } },
  179. { "a.CrossProduct(b)", (FbxVector4 a, FbxVector4 b) => { return a.CrossProduct(b); } },
  180. { "a.Distance(b)", (FbxVector4 a, FbxVector4 b) => { return Vector(a.Distance(b)); } },
  181. };
  182. static bool ApproximatelyEqualX(FbxVector4 expected, FbxVector4 actual) {
  183. Assert.AreEqual(expected.X, actual.X, 1e-8);
  184. return System.Math.Abs(expected.X - actual.X) < 1e-8;
  185. }
  186. static Dictionary<string, CppMatchingHelper.AreSimilar<FbxVector4>> s_custom_compare = new Dictionary<string, CppMatchingHelper.AreSimilar<FbxVector4>> {
  187. { "a.Length()", ApproximatelyEqualX },
  188. { "a.Distance(b)", ApproximatelyEqualX }
  189. };
  190. [Ignore("Fails if imported from a package because of Vector.cpp dependency")]
  191. [Test]
  192. public void MatchingTests ()
  193. {
  194. CppMatchingHelper.MatchingTest<FbxVector4>(
  195. "vector_test.txt",
  196. "FbxVector4",
  197. Vector,
  198. s_commands,
  199. s_custom_compare);
  200. }
  201. }
  202. }