00001
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00032
00033 #ifndef GROOVX_PKGS_WHITEBOX_GEOMTEST_CC_UTC20050626084022_DEFINED
00034 #define GROOVX_PKGS_WHITEBOX_GEOMTEST_CC_UTC20050626084022_DEFINED
00035
00036 #include "pkgs/whitebox/geomtest.h"
00037
00038 #include "geom/txform.h"
00039
00040 #include "tcl/pkg.h"
00041
00042 #include "rutz/unittest.h"
00043
00044 #include "rutz/trace.h"
00045 #include "rutz/debug.h"
00046 GVX_DBG_REGISTER
00047
00048 namespace
00049 {
00050 using geom::txform;
00051
00052 double sum_square(const txform& t)
00053 {
00054 double result=0.0;
00055 for (int i = 0; i < 16; ++i)
00056 result += (t[i] * t[i]);
00057 return result;
00058 }
00059
00060 txform operator-(const txform& t1, const txform& t2)
00061 {
00062 txform r = txform::no_init();
00063 for (int i = 0; i < 16; ++i)
00064 r[i] = t1[i] - t2[i];
00065 return r;
00066 }
00067
00068 void testInvert()
00069 {
00070 const txform I = txform::identity();
00071
00072 for (int i = 0; i < 1000; ++i)
00073 {
00074 const txform T = txform::random();
00075 const txform TI = T.inverted();
00076
00077 const txform M1 = T.mtx_mul(TI);
00078 const txform M2 = TI.mtx_mul(T);
00079
00080 dbg_dump(3, M1);
00081 dbg_dump(3, M2);
00082
00083 TEST_REQUIRE_APPROX(sum_square(M1 - I), 0.0, 1e-20);
00084 TEST_REQUIRE_APPROX(sum_square(M2 - I), 0.0, 1e-20);
00085 }
00086 }
00087 }
00088
00089 extern "C"
00090 int Geomtest_Init(Tcl_Interp* interp)
00091 {
00092 GVX_TRACE("Geomtest_Init");
00093
00094 GVX_PKG_CREATE(pkg, interp, "Geomtest", "4.$Revision: 10065 $");
00095
00096 DEF_TEST(pkg, testInvert);
00097
00098 GVX_PKG_RETURN(pkg);
00099 }
00100
00101
00102 extern "C" int Geomtest_SafeInit(Tcl_Interp*) { return 1; }
00103
00104 extern "C" int Geomtest_Unload(Tcl_Interp* interp, int )
00105 {
00106 GVX_TRACE("Geomtest_Unload");
00107 return tcl::pkg::destroy_on_unload(interp, "Geomtest");
00108 }
00109
00110 extern "C" int Geomtest_SafeUnload(Tcl_Interp*, int ) { return 1; }
00111
00112 static const char __attribute__((used)) vcid_groovx_pkgs_whitebox_geomtest_cc_utc20050626084022[] = "$Id: geomtest.cc 10065 2007-04-12 05:54:56Z rjpeters $ $HeadURL: file:
00113 #endif // !GROOVX_PKGS_WHITEBOX_GEOMTEST_CC_UTC20050626084022_DEFINED