• Main Page
  • Related Pages
  • Modules
  • Namespaces
  • Classes
  • Files
  • File List

composed.cc

00001 // Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE)
00002 //
00003 // This file is part of Olena.
00004 //
00005 // Olena is free software: you can redistribute it and/or modify it under
00006 // the terms of the GNU General Public License as published by the Free
00007 // Software Foundation, version 2 of the License.
00008 //
00009 // Olena is distributed in the hope that it will be useful,
00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012 // General Public License for more details.
00013 //
00014 // You should have received a copy of the GNU General Public License
00015 // along with Olena.  If not, see <http://www.gnu.org/licenses/>.
00016 //
00017 // As a special exception, you may use this file as part of a free
00018 // software project without restriction.  Specifically, if other files
00019 // instantiate templates or use macros or inline functions from this
00020 // file, or you compile this file and link it with other files to produce
00021 // an executable, this file does not by itself cause the resulting
00022 // executable to be covered by the GNU General Public License.  This
00023 // exception does not however invalidate any other reasons why the
00024 // executable file might be covered by the GNU General Public License.
00025 
00026 #include <iostream>
00027 
00028 #include <mln/fun/x2x/translation.hh>
00029 #include <mln/fun/x2x/rotation.hh>
00030 #include <mln/fun/x2x/composed.hh>
00031 #include <mln/fun/i2v/all_to.hh>
00032 
00033 
00034 int main()
00035 {
00036   using namespace mln;
00037 
00038   float
00039     a = 2.3,
00040     b = 0,
00041     c = 2.9;
00042 
00043   algebra::vec<3,float> vec1 = make::vec(a, b, c);
00044   fun::x2x::translation<3,float> tr(all_to(1.6));
00045   algebra::vec<3,float> axis;
00046   axis.set(0, 1, 0);
00047   fun::x2x::rotation<3,float> rot(0.3, axis);
00048 
00049   std::cout << "vec : " << vec1 << std::endl;
00050   std::cout << "tr(vec) : " << tr(vec1) << std::endl;
00051   std::cout << "rot(vec) : " << rot(vec1) << std::endl;
00052   std::cout << "tr(rot(vec)) : " << compose(tr, rot)(vec1) << std::endl;
00053   std::cout << "rot(rot_1(vec)) : " << compose(rot, rot.inv())(vec1)
00054             << std::endl;
00055   std::cout << "tr(rot(tr(vec))) : " << compose(tr, compose(rot, tr))(vec1)
00056             << std::endl;
00057   std::cout << "(rototr_1)(rot(tr(vec)))) : "
00058             << compose(compose(rot, tr).inv(), compose(rot, tr))(vec1)
00059             << std::endl;
00060   mln_assertion(fabs(compose(rot, tr)(vec1)[0] - rot(tr(vec1))[0]) <= 0.125);
00061   mln_assertion(fabs(compose(rot, tr)(vec1)[1] - rot(tr(vec1))[1]) <= 0.125);
00062   mln_assertion(fabs(compose(rot, tr)(vec1)[2] - rot(tr(vec1))[2]) <= 0.125);
00063 }

Generated on Tue Oct 4 2011 15:23:38 for Milena (Olena) by  doxygen 1.7.1