]> Creatis software - creaRigidRegistration.git/blob - lib/sourceVectorMath.h
96f8f06d29bd3f03640d70ef3e2d23d3dc54ea90
[creaRigidRegistration.git] / lib / sourceVectorMath.h
1 #ifndef _$PROJECT_NAME$SOURCE01_H_
2 #define _$PROJECT_NAME$SOURCE01_H_
3
4 #include "vtkMath.h"
5 #include <vector>
6
7 class VectorMath{
8 public: 
9         VectorMath();
10     ~VectorMath();
11         /*void SetTransform(vtkTransform *transform);
12         void SetCenterPoint(std::vector<int> point);
13         void SetAngle(double angle);
14         void SetScaleX(double scaleX);
15         void SetScaleY(double scaleY);
16         void SetScaleZ(double scaleZ);
17         void Run();
18     vtkTransform *GetResult();
19 private:
20         std::vector<int> _centerPoint;
21         double _angle;
22         double _scaleX;
23         double _scaleY;
24         double _scaleZ;
25         //vtkImageData *_image;
26         vtkTransform *_transform;*/
27 };
28
29 #endif