1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- * @file FTransform.cpp
- * @brief FTransform Class
- * @author Michael Koch
- * @date 08/19/2008
-
- */
- /** \example testPCA.cpp
- * This is an example of how to use an instance of FTransform the Principal Component Analysis (PCA) class.
- */
-
-
- #include "FTransform.h"
-
- // basic file operations
- #include <sstream>
- #include <iostream>
- #include <fstream>
- using namespace OBJREC;
-
-
-
- using namespace std;
- // refactor-nice.pl: check this substitution
- // old: using namespace ice;
- using namespace NICE;
-
- FTransform::FTransform()
- {
- }
-
-
-
- FTransform::~FTransform()
- {
- }
-
|