FTransform.cpp 647 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * @file FTransform.cpp
  3. * @brief FTransform Class
  4. * @author Michael Koch
  5. * @date 08/19/2008
  6. */
  7. /** \example testPCA.cpp
  8. * This is an example of how to use an instance of FTransform the Principal Component Analysis (PCA) class.
  9. */
  10. #include "FTransform.h"
  11. // basic file operations
  12. #include <sstream>
  13. #include <iostream>
  14. #include <fstream>
  15. using namespace OBJREC;
  16. using namespace std;
  17. // refactor-nice.pl: check this substitution
  18. // old: using namespace ice;
  19. using namespace NICE;
  20. FTransform::FTransform()
  21. {
  22. }
  23. FTransform::~FTransform()
  24. {
  25. }