]> git.mxchange.org Git - simgear.git/blob - simgear/math/SGMathTest.cxx
Remove fastmath funktions like discussed on the list.
[simgear.git] / simgear / math / SGMathTest.cxx
1 // Copyright (C) 2006  Mathias Froehlich - Mathias.Froehlich@web.de
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Library General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16 //
17
18 #ifdef HAVE_CONFIG_H
19 #  include <simgear_config.h>
20 #endif
21
22 #include <cstdlib>
23 #include <iostream>
24
25 #include <plib/sg.h>
26
27 #include "SGMath.hxx"
28
29 template<typename T>
30 bool
31 Vec3Test(void)
32 {
33   SGVec3<T> v1, v2, v3;
34
35   // Check if the equivalent function works
36   v1 = SGVec3<T>(1, 2, 3);
37   v2 = SGVec3<T>(3, 2, 1);
38   if (equivalent(v1, v2))
39     return false;
40
41   // Check the unary minus operator
42   v3 = SGVec3<T>(-1, -2, -3);
43   if (!equivalent(-v1, v3))
44     return false;
45
46   // Check the unary plus operator
47   v3 = SGVec3<T>(1, 2, 3);
48   if (!equivalent(+v1, v3))
49     return false;
50
51   // Check the addition operator
52   v3 = SGVec3<T>(4, 4, 4);
53   if (!equivalent(v1 + v2, v3))
54     return false;
55
56   // Check the subtraction operator
57   v3 = SGVec3<T>(-2, 0, 2);
58   if (!equivalent(v1 - v2, v3))
59     return false;
60
61   // Check the scaler multiplication operator
62   v3 = SGVec3<T>(2, 4, 6);
63   if (!equivalent(2*v1, v3))
64     return false;
65
66   // Check the dot product
67   if (fabs(dot(v1, v2) - 10) > 10*SGLimits<T>::epsilon())
68     return false;
69
70   // Check the cross product
71   v3 = SGVec3<T>(-4, 8, -4);
72   if (!equivalent(cross(v1, v2), v3))
73     return false;
74
75   // Check the euclidean length
76   if (fabs(14 - length(v1)*length(v1)) > 14*SGLimits<T>::epsilon())
77     return false;
78
79   return true;
80 }
81
82 template<typename T>
83 bool
84 QuatTest(void)
85 {
86   const SGVec3<T> e1(1, 0, 0);
87   const SGVec3<T> e2(0, 1, 0);
88   const SGVec3<T> e3(0, 0, 1);
89   SGVec3<T> v1, v2;
90   SGQuat<T> q1, q2, q3, q4;
91   // Check a rotation around the x axis
92   q1 = SGQuat<T>::fromAngleAxis(SGMisc<T>::pi(), e1);
93   v1 = SGVec3<T>(1, 2, 3);
94   v2 = SGVec3<T>(1, -2, -3);
95   if (!equivalent(q1.transform(v1), v2))
96     return false;
97   
98   // Check a rotation around the x axis
99   q1 = SGQuat<T>::fromAngleAxis(0.5*SGMisc<T>::pi(), e1);
100   v2 = SGVec3<T>(1, 3, -2);
101   if (!equivalent(q1.transform(v1), v2))
102     return false;
103
104   // Check a rotation around the y axis
105   q1 = SGQuat<T>::fromAngleAxis(SGMisc<T>::pi(), e2);
106   v2 = SGVec3<T>(-1, 2, -3);
107   if (!equivalent(q1.transform(v1), v2))
108     return false;
109   
110   // Check a rotation around the y axis
111   q1 = SGQuat<T>::fromAngleAxis(0.5*SGMisc<T>::pi(), e2);
112   v2 = SGVec3<T>(-3, 2, 1);
113   if (!equivalent(q1.transform(v1), v2))
114     return false;
115
116   // Check a rotation around the z axis
117   q1 = SGQuat<T>::fromAngleAxis(SGMisc<T>::pi(), e3);
118   v2 = SGVec3<T>(-1, -2, 3);
119   if (!equivalent(q1.transform(v1), v2))
120     return false;
121
122   // Check a rotation around the z axis
123   q1 = SGQuat<T>::fromAngleAxis(0.5*SGMisc<T>::pi(), e3);
124   v2 = SGVec3<T>(2, -1, 3);
125   if (!equivalent(q1.transform(v1), v2))
126     return false;
127
128   // Now check some successive transforms
129   // We can reuse the prevously tested stuff
130   q1 = SGQuat<T>::fromAngleAxis(0.5*SGMisc<T>::pi(), e1);
131   q2 = SGQuat<T>::fromAngleAxis(0.5*SGMisc<T>::pi(), e2);
132   q3 = q1*q2;
133   v2 = q2.transform(q1.transform(v1));
134   if (!equivalent(q3.transform(v1), v2))
135     return false;
136
137   /// Test from Euler angles
138   float x = 0.2*SGMisc<T>::pi();
139   float y = 0.3*SGMisc<T>::pi();
140   float z = 0.4*SGMisc<T>::pi();
141   q1 = SGQuat<T>::fromAngleAxis(z, e3);
142   q2 = SGQuat<T>::fromAngleAxis(y, e2);
143   q3 = SGQuat<T>::fromAngleAxis(x, e1);
144   v2 = q3.transform(q2.transform(q1.transform(v1)));
145   q4 = SGQuat<T>::fromEulerRad(z, y, x);
146   if (!equivalent(q4.transform(v1), v2))
147     return false;
148
149   /// Test angle axis forward and back transform
150   q1 = SGQuat<T>::fromAngleAxis(0.2*SGMisc<T>::pi(), e1);
151   q2 = SGQuat<T>::fromAngleAxis(0.7*SGMisc<T>::pi(), e2);
152   q3 = q1*q2;
153   SGVec3<T> angleAxis;
154   q1.getAngleAxis(angleAxis);
155   q4 = SGQuat<T>::fromAngleAxis(angleAxis);
156   if (!equivalent(q1, q4))
157     return false;
158   q2.getAngleAxis(angleAxis);
159   q4 = SGQuat<T>::fromAngleAxis(angleAxis);
160   if (!equivalent(q2, q4))
161     return false;
162   q3.getAngleAxis(angleAxis);
163   q4 = SGQuat<T>::fromAngleAxis(angleAxis);
164   if (!equivalent(q3, q4))
165     return false;
166
167   return true;
168 }
169
170 template<typename T>
171 bool
172 MatrixTest(void)
173 {
174   // Create some test matrix
175   SGVec3<T> v0(2, 7, 17);
176   SGQuat<T> q0 = SGQuat<T>::fromAngleAxis(SGMisc<T>::pi(), normalize(v0));
177   SGMatrix<T> m0(q0, v0);
178
179   // Check the tqo forms of the inverse for that kind of special matrix
180   SGMatrix<T> m1, m2;
181   invert(m1, m0);
182   m2 = transNeg(m0);
183   if (!equivalent(m1, m2))
184     return false;
185
186   // Check matrix multiplication and inversion
187   if (!equivalent(m0*m1, SGMatrix<T>::unit()))
188     return false;
189   if (!equivalent(m1*m0, SGMatrix<T>::unit()))
190     return false;
191   if (!equivalent(m0*m2, SGMatrix<T>::unit()))
192     return false;
193   if (!equivalent(m2*m0, SGMatrix<T>::unit()))
194     return false;
195   
196   return true;
197 }
198
199 bool
200 GeodesyTest(void)
201 {
202   // We know that the values are on the order of 1
203   double epsDeg = 10*SGLimits<double>::epsilon();
204   // For the altitude values we need to tolerate relative errors in the order
205   // of the radius
206   double epsM = 1e6*SGLimits<double>::epsilon();
207
208   SGVec3<double> cart0, cart1;
209   SGGeod geod0, geod1;
210   SGGeoc geoc0;
211
212   // create some geodetic position
213   geod0 = SGGeod::fromDegM(30, 20, 17);
214
215   // Test the conversion routines to cartesian coordinates
216   cart0 = SGVec3<double>::fromGeod(geod0);
217   geod1 = SGGeod::fromCart(cart0);
218   if (epsDeg < fabs(geod0.getLongitudeDeg() - geod1.getLongitudeDeg()) ||
219       epsDeg < fabs(geod0.getLatitudeDeg() - geod1.getLatitudeDeg()) ||
220       epsM < fabs(geod0.getElevationM() - geod1.getElevationM()))
221     return false;
222
223   // Test the conversion routines to radial coordinates
224   geoc0 = SGGeoc::fromCart(cart0);
225   cart1 = SGVec3<double>::fromGeoc(geoc0);
226   if (!equivalent(cart0, cart1))
227     return false;
228
229   return true;
230 }
231
232
233 bool
234 sgInterfaceTest(void)
235 {
236   SGVec3f v3f = SGVec3f::e2();
237   SGVec4f v4f = SGVec4f::e2();
238   SGQuatf qf = SGQuatf::fromEulerRad(1.2, 1.3, -0.4);
239   SGMatrixf mf(qf, v3f);
240
241   // Copy to and from plibs types check if result is equal,
242   // test for exact equality
243   SGVec3f tv3f;
244   sgVec3 sv3f;
245   sgCopyVec3(sv3f, v3f.sg());
246   sgCopyVec3(tv3f.sg(), sv3f);
247   if (tv3f != v3f)
248     return false;
249   
250   // Copy to and from plibs types check if result is equal,
251   // test for exact equality
252   SGVec4f tv4f;
253   sgVec4 sv4f;
254   sgCopyVec4(sv4f, v4f.sg());
255   sgCopyVec4(tv4f.sg(), sv4f);
256   if (tv4f != v4f)
257     return false;
258
259   // Copy to and from plibs types check if result is equal,
260   // test for exact equality
261   SGQuatf tqf;
262   sgQuat sqf;
263   sgCopyQuat(sqf, qf.sg());
264   sgCopyQuat(tqf.sg(), sqf);
265   if (tqf != qf)
266     return false;
267
268   // Copy to and from plibs types check if result is equal,
269   // test for exact equality
270   SGMatrixf tmf;
271   sgMat4 smf;
272   sgCopyMat4(smf, mf.sg());
273   sgCopyMat4(tmf.sg(), smf);
274   if (tmf != mf)
275     return false;
276
277   return true;
278 }
279
280 bool
281 sgdInterfaceTest(void)
282 {
283   SGVec3d v3d = SGVec3d::e2();
284   SGVec4d v4d = SGVec4d::e2();
285   SGQuatd qd = SGQuatd::fromEulerRad(1.2, 1.3, -0.4);
286   SGMatrixd md(qd, v3d);
287
288   // Copy to and from plibs types check if result is equal,
289   // test for exact equality
290   SGVec3d tv3d;
291   sgdVec3 sv3d;
292   sgdCopyVec3(sv3d, v3d.sg());
293   sgdCopyVec3(tv3d.sg(), sv3d);
294   if (tv3d != v3d)
295     return false;
296   
297   // Copy to and from plibs types check if result is equal,
298   // test for exact equality
299   SGVec4d tv4d;
300   sgdVec4 sv4d;
301   sgdCopyVec4(sv4d, v4d.sg());
302   sgdCopyVec4(tv4d.sg(), sv4d);
303   if (tv4d != v4d)
304     return false;
305
306   // Copy to and from plibs types check if result is equal,
307   // test for exact equality
308   SGQuatd tqd;
309   sgdQuat sqd;
310   sgdCopyQuat(sqd, qd.sg());
311   sgdCopyQuat(tqd.sg(), sqd);
312   if (tqd != qd)
313     return false;
314
315   // Copy to and from plibs types check if result is equal,
316   // test for exact equality
317   SGMatrixd tmd;
318   sgdMat4 smd;
319   sgdCopyMat4(smd, md.sg());
320   sgdCopyMat4(tmd.sg(), smd);
321   if (tmd != md)
322     return false;
323
324   return true;
325 }
326
327 int
328 main(void)
329 {
330   // Do vector tests
331   if (!Vec3Test<float>())
332     return EXIT_FAILURE;
333   if (!Vec3Test<double>())
334     return EXIT_FAILURE;
335
336   // Do quaternion tests
337   if (!QuatTest<float>())
338     return EXIT_FAILURE;
339   if (!QuatTest<double>())
340     return EXIT_FAILURE;
341
342   // Do matrix tests
343   if (!MatrixTest<float>())
344     return EXIT_FAILURE;
345   if (!MatrixTest<double>())
346     return EXIT_FAILURE;
347
348   // Check geodetic/geocentric/cartesian conversions
349   if (!GeodesyTest())
350     return EXIT_FAILURE;
351
352   // Check interaction with sg*/sgd*
353   if (!sgInterfaceTest())
354     return EXIT_FAILURE;
355   if (!sgdInterfaceTest())
356     return EXIT_FAILURE;
357   
358   std::cout << "Successfully passed all tests!" << std::endl;
359   return EXIT_SUCCESS;
360 }