ENH: patchCloud: return pTraits<Type>::max for unfound points
[OpenFOAM-1.7.x.git] / applications / test / quaternion / quaternionTest.C
blobf06ac53a1899e5ee352e5ebaeb88c6a3be17a599
1 #include "quaternion.H"
2 #include "septernion.H"
3 #include "IOstreams.H"
5 using namespace Foam;
7 int main()
9     quaternion q(vector(1, 0, 0), 0.7853981);
10     Info<< "q " << q << endl;
12     vector v(0, 1, 0);
13     Info<< "v " << v << endl;
15     Info<< "inv(q)*q " << inv(q)*q << endl;
17     Info<< "q*quaternion(0, v)*conjugate(q) "
18         << q*quaternion(0, v)*conjugate(q) << endl;
20     Info<< "q.transform(v) " << q.transform(v) << endl;
21     Info<< "q.R() & v " << (q.R() & v) << endl;
23     Info<< "q.invTransform(v) " << q.invTransform(v) << endl;
25     septernion tr(vector(0, 0.1, 0), q);
26     Info<< "tr " << tr << endl;
28     Info<< "inv(tr)*tr " << inv(tr)*tr << endl;
30     Info<< "tr.transform(v) " << tr.transform(v) << endl;
32     Info<< "(septernion(vector(0, -1, 0))*q*septernion(vector(0, 1, 0))).transform(v) "
33         << (septernion(vector(0, -1, 0))*q*septernion(vector(0, 1, 0))).transform(v)
34         << endl;
36     return 0;